3769a27a4f
python, why are you like this?
9 lines
172 B
Python
9 lines
172 B
Python
from PyQt5 import QtWidgets
|
|
import sys
|
|
|
|
from main.astrodatagui.AstrodataGUI import AstrodataGUI
|
|
|
|
app = QtWidgets.QApplication(sys.argv)
|
|
window = AstrodataGUI()
|
|
|
|
app.exec_() |