From b99e6009cbc869b3d427991d2b5f57cbd6c4f587 Mon Sep 17 00:00:00 2001 From: developomp Date: Wed, 23 Feb 2022 17:20:09 +0900 Subject: [PATCH] Simplified logging --- src/__main__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/__main__.py b/src/__main__.py index c6c565e..f2768ef 100644 --- a/src/__main__.py +++ b/src/__main__.py @@ -33,7 +33,7 @@ def run_procedures(): for setup_script_path in glob("src/procedures/*/__init__.py"): module_name = setup_script_path.split("/")[-2] - info(f"Parsing {BOLD}{module_name}{END}{GREEN}") + info(f"Current step: {BOLD}{module_name}{END}{GREEN}") spec = spec_from_file_location(module_name, setup_script_path) module = module_from_spec(spec) @@ -47,8 +47,10 @@ def main(): run_procedures() - # create POMP.osk make_osk() + print() + print("Done!") + main()