This commit is contained in:
2025-02-22 16:10:06 +01:00
parent 8e9b28ab39
commit 617c09ec9e
9 changed files with 691 additions and 402 deletions

View File

@@ -1,10 +1,10 @@
from PyQt5.QtWidgets import *
class main(QWidget):
def __init__(self):
super().__init__()
app = QApplication([])
window = main()
window.show()
from PyQt5.QtWidgets import *
class main(QWidget):
def __init__(self):
super().__init__()
app = QApplication([])
window = main()
window.show()
app.exec()