Skip to content

Commit

Permalink
Fix gclib relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LagoLunatic committed Mar 24, 2024
1 parent 1dc96db commit d29032d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gcft_ui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
from PySide6.QtCore import *
from PySide6.QtWidgets import *

sys.path.insert(0, "./gclib")
sys.path.insert(0, "./PyJ3DUltra/build")
sys.path.insert(0, "./PyJ3DUltra/build/Release")
sys.path.insert(0, "./PyJ3DUltra/build/Debug")
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "gclib"))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "PyJ3DUltra", "build"))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "PyJ3DUltra", "build", "Release"))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "PyJ3DUltra", "build", "Debug"))

from gclib import fs_helpers as fs
from gcft_ui.uic.ui_main import Ui_MainWindow
Expand Down

0 comments on commit d29032d

Please sign in to comment.