Coverage for src/__init__.py: 40%
5 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-19 11:23 +0100
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-19 11:23 +0100
1"""Initialize the application."""
3__version__ = "0.7"
6def main() -> None:
7 """Call the main application code.
9 This is the legacy code, I'll probably refactor it later out of the init.
10 """
11 from src.core import main
13 print(__name__)
15 main()