cuissedemouche
7cc07c2657
First commit of the app Basic and advanced tab can be generated via code to the QPlainTextEdit
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() |