Skip to content

Commit

Permalink
Changed the internal import statement of CustomWidgets to include eve…
Browse files Browse the repository at this point in the history
…rything as package or normal project
  • Loading branch information
ArJaVer committed Oct 15, 2024
1 parent c88fc95 commit 1f9bfdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/evaluix/GUIs/CustomWidgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@

# Import converted .ui files for the custom widgets
try:
from .GUIs.Btn_InfoSettings import Ui_infosett_dialog
from .GUIs.ProfileAndMacros import Ui_profilemacros_dialog
from .GUIs.HDF5Preview import Ui_hdf5preview_dialog
from .GUIs.ManualDataDialog import Ui_ManualDataInput_mdi
from .GUIs.FunctionViewer import Ui_functionviewer_dialog
from ..GUIs.Btn_InfoSettings import Ui_infosett_dialog
from ..GUIs.ProfileAndMacros import Ui_profilemacros_dialog
from ..GUIs.HDF5Preview import Ui_hdf5preview_dialog
from ..GUIs.ManualDataDialog import Ui_ManualDataInput_mdi
from ..GUIs.FunctionViewer import Ui_functionviewer_dialog
except ImportError:
from GUIs.Btn_InfoSettings import Ui_infosett_dialog
from GUIs.ProfileAndMacros import Ui_profilemacros_dialog
Expand Down
2 changes: 1 addition & 1 deletion src/evaluix/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.1.24"
__version__ = "0.9.1.25"

0 comments on commit 1f9bfdc

Please sign in to comment.