Python-Dateien formatiert

This commit is contained in:
2025-05-23 11:09:47 +02:00
parent 0aa3ddadca
commit 89fdd326c4
2 changed files with 49 additions and 39 deletions
+5 -3
View File
@@ -1,5 +1,7 @@
import sys
from PySide6.QtWidgets import QApplication
from MainWindow import MainWindow
@@ -7,13 +9,13 @@ def main():
"""Haupteinstiegspunkt der Anwendung."""
# QApplication-Instanz erstellen
app = QApplication(sys.argv)
# Hauptfenster erstellen
window = MainWindow()
# Hauptfenster anzeigen
window.show()
# Anwendung ausführen und Rückgabewert zurückgeben
return app.exec()