fix: tui_standalone.py gibt Klasse statt Instanz zurück (textual serve erwartet Factory)

This commit is contained in:
2026-03-13 14:06:07 +01:00
parent 9046708015
commit 3177146267

View File

@@ -15,7 +15,6 @@ Verwendung:
from tui.app import MCMApp
app = MCMApp()
if __name__ == "__main__":
app.run()
# textual serve erwartet eine Klasse oder Factory-Funktion,
# keine bereits instanziierte App.
app = MCMApp