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