BUGFIX: VFT;

change to src layout
This commit is contained in:
dominik
2022-10-20 17:23:15 +02:00
parent 89ce4bab9f
commit 8d148b639b
445 changed files with 1387 additions and 1920 deletions

View File

@ -2,7 +2,7 @@
import sys
import pathlib
sys.path.append(str(pathlib.Path().cwd().parent))
sys.path.append(str(pathlib.Path(__file__).parent.parent / 'src'))
from nmreval.configs import check_for_config
@ -15,8 +15,8 @@ check_for_config()
from nmreval.lib.logger import handle_exception
sys.excepthook = handle_exception
from nmreval.gui_qt import App
from nmreval.gui_qt.main.mainwindow import NMRMainWindow
from gui_qt import App
from gui_qt.main.mainwindow import NMRMainWindow
app = App([])