Files
gluggen/screen.py
2025-06-07 19:09:19 +02:00

11 lines
183 B
Python

from widget import *
if __name__ == "__main__":
app = QtWidgets.QApplication([])
widget = MyWidget()
widget.resize(800, 600)
widget.show()
sys.exit(app.exec())