Newer
Older
Garrett Bates
committed
import sys
Garrett Bates
committed
from sohstationviewer.view.mainwindow import MainWindow
Garrett Bates
committed
def main():
app = QtWidgets.QApplication(sys.argv)
wnd = MainWindow()
wnd.show()
sys.exit(app.exec_())
Garrett Bates
committed
if __name__ == '__main__':
main()