]> Skullheadx's Git Forge - Sorting.git/commitdiff
show display when run main
authorSkullheadx <704277@pdsb.net>
Tue, 24 Jan 2023 22:08:55 +0000 (17:08 -0500)
committerSkullheadx <704277@pdsb.net>
Tue, 24 Jan 2023 22:08:55 +0000 (17:08 -0500)
.gitignore
main.py

index 3d4d5d4c30e56672f238d15e9050b2e7901f8fd9..27e061000a070183733b7777758099f677216d79 100644 (file)
@@ -7,3 +7,5 @@
 /dataSources/
 /dataSources.local.xml
 .idea/
+__pycache__/
+
diff --git a/main.py b/main.py
index 257ee7470ac811a0df4e407b28c585fd21bc90d2..d90402b2788df0aa6695e09b90ed4c926add60b3 100644 (file)
--- a/main.py
+++ b/main.py
@@ -1,5 +1,8 @@
+from display import Display
+
 def main():
-    print("hello world")
+    window = Display()
+    window.show()
 
 
 if __name__ == "__main__":