11 lines
165 B
Python
11 lines
165 B
Python
|
import sys
|
||
|
|
||
|
from PySide6 import QtWidgets
|
||
|
from main_window import MainWindow
|
||
|
|
||
|
app = QtWidgets.QApplication(sys.argv)
|
||
|
|
||
|
window = MainWindow()
|
||
|
window.show()
|
||
|
|
||
|
app.exec()
|