From fa4353efae42c75afbc9dce66a7b29053d02f0f2 Mon Sep 17 00:00:00 2001 From: Code-lab-web <145796632+Code-lab-web@users.noreply.github.com> Date: Mon, 16 Feb 2026 17:45:57 +0100 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> --- frontend/src/tests/jsonify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/tests/jsonify.py b/frontend/src/tests/jsonify.py index 193f13287c..6398368c3a 100644 --- a/frontend/src/tests/jsonify.py +++ b/frontend/src/tests/jsonify.py @@ -37,4 +37,4 @@ def sinup(): return jsonify({"message": "User signed up succesfully"}), 200 if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + app.run() \ No newline at end of file