From 27f379e0ca2f87734dd2c831bc463de65a795f28 Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Tue, 12 Aug 2025 15:18:31 +0200 Subject: [PATCH] remove accidental debug flag(again) --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index c4d71c9..e2192b5 100644 --- a/main.py +++ b/main.py @@ -235,4 +235,4 @@ def logout(): def unauthorized_handler(): return redirect("/login") -app.run(debug=True, port=os.environ.get("PORT"), host=os.environ.get("HOST", "0.0.0.0")) \ No newline at end of file +app.run(port=os.environ.get("PORT"), host=os.environ.get("HOST", "0.0.0.0")) \ No newline at end of file