Persano commited on
Commit
fb07878
·
verified ·
1 Parent(s): d0afd87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -259,6 +259,7 @@ def download_pdf():
259
  as_attachment=True,
260
  download_name="relatorio_investimentos.pdf"
261
  )
 
 
 
262
 
263
- if __name__ == "__main__":
264
- app.run(debug=True)
 
259
  as_attachment=True,
260
  download_name="relatorio_investimentos.pdf"
261
  )
262
+
263
+ if __name__ == '__main__':
264
+ app.run(host='0.0.0.0', port=7860, debug=True)
265