Merge pull request #16 from av1155/patch-1

Fix incorrect `ip` argument in app.run()
This commit is contained in:
Mauricio Siu
2025-07-05 01:06:12 -06:00
committed by GitHub

View File

@@ -9,4 +9,4 @@ def hello_world():
if __name__ == '__main__':
app.run(debug=False, ip="0.0.0.0", port=5000)
app.run(debug=False, host="0.0.0.0", port=5000)