Skip to content
Snippets Groups Projects
sohstationviewer.py 258 B
Newer Older
from PySide2 import QtWidgets
from sohstationviewer.view.mainwindow import MainWindow

def main():
    app = QtWidgets.QApplication(sys.argv)
    wnd = MainWindow()
    wnd.show()
    sys.exit(app.exec_())