11 lines
222 B
Python
11 lines
222 B
Python
from src.python.classes.mainwindow import MainWindow
|
|
from PyQt5 import QtWidgets
|
|
import sys
|
|
|
|
|
|
if __name__=='__main__':
|
|
app = QtWidgets.QApplication(sys.argv)
|
|
w = MainWindow()
|
|
w.show()
|
|
sys.exit(app.exec_())
|