From 86192a95893e14aaf4d1ea0f5632fcba7b8f22ef Mon Sep 17 00:00:00 2001 From: Vishwajeet Kondi Date: Tue, 10 Feb 2026 12:31:56 +0530 Subject: [PATCH] Potential fix for code scanning alert no. 1: Flask app is run in debug mode Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- api/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/index.py b/api/index.py index 74dc8bb..1064326 100644 --- a/api/index.py +++ b/api/index.py @@ -9,4 +9,4 @@ from app import app if __name__ == "__main__": - app.run(debug=True) \ No newline at end of file + app.run() \ No newline at end of file