Coverage for src/__init__.py: 40%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-19 11:23 +0100

1"""Initialize the application.""" 

2 

3__version__ = "0.7" 

4 

5 

6def main() -> None: 

7 """Call the main application code. 

8 

9 This is the legacy code, I'll probably refactor it later out of the init. 

10 """ 

11 from src.core import main 

12 

13 print(__name__) 

14 

15 main()