From 38c78934a5eb2ae72c2a110fc412ef4b394dd9f3 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Fri, 19 Jul 2024 17:18:40 +0200 Subject: [PATCH] =?UTF-8?q?=C3=84ndrade=20tillbaks=20till=20debug=3Dtrue?= =?UTF-8?q?=20f=C3=B6r=20Flask?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smartassist/src/backend.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/smartassist/src/backend.py b/smartassist/src/backend.py index 5580059..d6c0128 100644 --- a/smartassist/src/backend.py +++ b/smartassist/src/backend.py @@ -83,7 +83,8 @@ def get_response(user_query): def run_flask(fport=5005): # Flask endpoint for user interaction print(f"Entering run_flask()") - app.run(port = str(str(fport)), debug=False) + # app.run(port = str(str(fport)), debug=False) + app.run(port = str(str(fport)), debug=True) # app.run(port=5000, debug=True, use_reloader=False) print(f"Exiting run_flask()")