diff --git a/entry.py b/entry.py index 4a041fd..15345a6 100644 --- a/entry.py +++ b/entry.py @@ -1,4 +1,4 @@ -from submodule.thing import test +from thing import test print("entry") test() diff --git a/submodule/other.py b/other.py similarity index 100% rename from submodule/other.py rename to other.py diff --git a/submodule/thing.py b/thing.py similarity index 100% rename from submodule/thing.py rename to thing.py