From 295a433d59b06c52d5c637bb76616f118221be1d Mon Sep 17 00:00:00 2001 From: LS Date: Wed, 9 Apr 2025 11:23:48 -0300 Subject: [PATCH] fix: remove debug duplicado na chamada de app.run() --- app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app.py b/app.py index 46326fc..531bb7a 100644 --- a/app.py +++ b/app.py @@ -1696,6 +1696,5 @@ if __name__ == '__main__': app.run( host='0.0.0.0', port=5000, - debug=os.getenv('FLASK_ENV') == 'development', - debug=True + debug=os.getenv('FLASK_ENV') == 'development' )