diff options
author | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-03 00:19:43 -0500 |
---|---|---|
committer | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-03 00:19:43 -0500 |
commit | 7635775ee641395eca839bf135ae29fbc2f64b23 (patch) | |
tree | 7f4b00621e08cf5187a6b08fe3c16400c57d9a1e /src/main.py | |
parent | 870cf5ad6f121e3a0f69c7f1645dad59eded416b (diff) | |
download | koopatlas-7635775ee641395eca839bf135ae29fbc2f64b23.tar.gz koopatlas-7635775ee641395eca839bf135ae29fbc2f64b23.zip |
Fixed your problem by moving the import. Too much cross importing for my blood.
Diffstat (limited to '')
-rw-r--r-- | src/main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.py b/src/main.py index 927c970..ebf762f 100644 --- a/src/main.py +++ b/src/main.py @@ -1,5 +1,4 @@ from common import * -from ui import KPMainWindow class KP: @staticmethod @@ -12,6 +11,8 @@ class KP: KP.newMap() + from ui import KPMainWindow + KP.mainWindow = KPMainWindow() KP.mainWindow.show() |