This commit is contained in:
2026-04-26 16:06:24 +00:00
parent 737135439d
commit e2646fc888
5 changed files with 438 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from PyQt5.QtWidgets import *
class main(QWidget):
def __init__(self):
super().__init__()
app = QApplication([])
window = main()
window.show()
app.exec()