Update app.py
Browse files
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 |
|
|
|
|
|
|