From 71f926e6bed0eefe8c21dcc58c89c3f62818f747 Mon Sep 17 00:00:00 2001 From: LS Date: Wed, 9 Apr 2025 10:12:05 -0300 Subject: [PATCH] fix: corrige erro de sintaxe na chamada de app.run() --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 45fbe4a..46326fc 100644 --- a/app.py +++ b/app.py @@ -1693,9 +1693,9 @@ def main(): app = main() if __name__ == '__main__': - app.run( + app.run( host='0.0.0.0', port=5000, - debug=os.getenv('FLASK_ENV') == 'development' + debug=os.getenv('FLASK_ENV') == 'development', debug=True )