WIP: I HATE PYTHON

This commit is contained in:
2026-03-05 13:55:40 -05:00
parent 107608cd76
commit 5e69617f88
43 changed files with 1854 additions and 1671 deletions

View File

@@ -1,12 +1,12 @@
import sys
import os
# Add src to sys.path so we can import from it easily
# Add project root to sys.path
project_root = os.path.dirname(os.path.abspath(__file__))
src_path = os.path.join(project_root, "src")
sys.path.insert(0, src_path)
if project_root not in sys.path:
sys.path.insert(0, project_root)
from gui_2 import main
from src.gui_2 import main
if __name__ == "__main__":
main()
main()