fix: IndentationError in web.py run_schedule entfernt

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Cursor 2026-02-25 16:29:34 +07:00
parent 4ba004cc76
commit 6ddbc2bcfd

View file

@ -667,10 +667,4 @@ if __name__ == "__main__":
init_db()
log("Flugpreisscanner Hub gestartet")
# Scheduler läuft als eigener Container (scheduler.py)
def run_schedule():
pass # Scheduler-Container übernimmt die Zeitplanung
time.sleep(30)
threading.Thread(target=run_schedule, daemon=True).start()
app.run(host="0.0.0.0", port=8080, debug=False)