Coverage for src/xlbudget/__init__.py: 40.00%

5 statements  

« prev     ^ index     » next       coverage.py v7.2.5, created at 2024-01-05 07:44 +0000

1"""Xlbudget: a personal bookkeeping assistant.""" 

2 

3from .configure import setup 

4 

5 

6def main(): 

7 "Entry point for the application script." 

8 args = setup() 

9 cmd = args.init(args) 

10 cmd.run()