From 8c95283f82c1b70309cdb2a365463a9bc6eff88c Mon Sep 17 00:00:00 2001 From: Andy Shields Date: Wed, 17 Jun 2020 17:26:35 -0700 Subject: [PATCH] here you go --- src/common/__init__.py | 0 src/myfolder/__init__.py | 0 src/myfolder/mytest.py | 9 +++++++-- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 src/common/__init__.py create mode 100644 src/myfolder/__init__.py diff --git a/src/common/__init__.py b/src/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/myfolder/__init__.py b/src/myfolder/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/myfolder/mytest.py b/src/myfolder/mytest.py index f564ad8..d9b2664 100644 --- a/src/myfolder/mytest.py +++ b/src/myfolder/mytest.py @@ -1,4 +1,9 @@ -from common import hello_world +from common import helpers as h def print_hello_world(): - hello_world \ No newline at end of file + h.hello_world() + +if __name__ == "__main__": + print_hello_world() + +