Moves argparser functions to runnable.py and PFState to state.py Main function will now only call run from runnable.py. Should make it easier to run additional functions. Program can now be run from main.py, or imported from pfbudget.
5 lines
72 B
Python
5 lines
72 B
Python
from pfbudget.runnable import run
|
|
|
|
if __name__ == "__main__":
|
|
run()
|