Coverage for src/rhiza_task/__main__.py: 100%
1 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:13 +0000
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:13 +0000
1"""Support ``python -m rhiza_task``, for a checkout without the console script installed."""
3from .cli import main
5if __name__ == "__main__": # pragma: no cover - trivial delegation
6 main()