From 5876b247f4d8ebe48feb2bc4387bbe53833732e1 Mon Sep 17 00:00:00 2001 From: JSC Date: Fri, 4 Jul 2025 20:30:58 +0200 Subject: [PATCH] refactor(main): remove allow_unsafe_werkzeug option from SocketIO run configuration --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 42cc5a0..945692d 100644 --- a/main.py +++ b/main.py @@ -9,7 +9,7 @@ load_dotenv() def main() -> None: """Run the Flask application with SocketIO.""" app = create_app() - socketio.run(app, debug=True, host="0.0.0.0", port=5000, allow_unsafe_werkzeug=True) + socketio.run(app, debug=True, host="0.0.0.0", port=5000) if __name__ == "__main__":