__init__.py
1 """BugReport package. 2 3 Maintainers store configuration in their repository, users call the tool to generate high quality bug reports easily. 4 """ 5 6 from __future__ import annotations 7 8 from bugreport._internal.cli import get_parser, main 9 10 __all__: list[str] = ["get_parser", "main"]