fix: corrige erro de sintaxe na chamada de app.run()
This commit is contained in:
4
app.py
4
app.py
@@ -1693,9 +1693,9 @@ def main():
|
|||||||
app = main()
|
app = main()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run(
|
app.run(
|
||||||
host='0.0.0.0',
|
host='0.0.0.0',
|
||||||
port=5000,
|
port=5000,
|
||||||
debug=os.getenv('FLASK_ENV') == 'development'
|
debug=os.getenv('FLASK_ENV') == 'development',
|
||||||
debug=True
|
debug=True
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user