diff --git a/.gitignore b/.gitignore index 37fc9d4..7e458db 100644 --- a/.gitignore +++ b/.gitignore @@ -88,3 +88,7 @@ ENV/ # Rope project settings .ropeproject + +# pyCharm .idea +.idea/ +.idea/* diff --git a/sample/core.py b/sample/core.py index 19bf06c..f64e0ae 100644 --- a/sample/core.py +++ b/sample/core.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from . import helpers +from helpers import helpers def get_hmm(): """Get a thought.""" @@ -10,3 +10,5 @@ def hmm(): """Contemplation...""" if helpers.get_answer(): print(get_hmm()) + +hmm() \ No newline at end of file diff --git a/sample/helpers/__init__.py b/sample/helpers/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sample/helpers.py b/sample/helpers/helpers.py similarity index 100% rename from sample/helpers.py rename to sample/helpers/helpers.py