951ce66122
import of custom widget only supported if run by main.py
9 lines
167 B
Python
9 lines
167 B
Python
from PyQt5 import QtWidgets
|
|
import sys
|
|
|
|
from astrodatagui.AstrodataGUI import AstrodataGUI
|
|
|
|
app = QtWidgets.QApplication(sys.argv)
|
|
window = AstrodataGUI()
|
|
|
|
app.exec_() |