__init__.py now contains module public methods

main.py updated.
This commit is contained in:
Luís Murta 2021-06-11 23:31:46 +01:00
parent deaa71ead4
commit a7ea3affe6
Signed by: satprog
GPG Key ID: DDF2EFC6179009DC
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
from pfbudget.runnable import run
from pfbudget import run
if __name__ == "__main__":
run()

View File

@ -0,0 +1,3 @@
from .categories import categorize_data
from .parsers import parse_data
from .runnable import run