From 7253c9f9f49b3c528a3c979819180ef1eee9d13e Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Thu, 24 Jun 2021 15:58:31 +0800 Subject: [PATCH] Flatten structure --- entry.py | 2 +- submodule/other.py => other.py | 0 submodule/thing.py => thing.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename submodule/other.py => other.py (100%) rename submodule/thing.py => thing.py (100%) 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