astrodatagui: use relative imports for .ui file

import of custom widget only supported if run by main.py
This commit is contained in:
2024-03-01 12:55:57 +01:00
parent 63e45fb358
commit 951ce66122
4 changed files with 14 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
from PyQt5 import QtWidgets
import sys
from astrodatagui.AstrodataGUI import AstrodataGUI
app = QtWidgets.QApplication(sys.argv)
window = AstrodataGUI()
app.exec_()