Remove host argument

This commit is contained in:
Madis Mägi 2021-10-26 18:01:56 +03:00
parent 831531cf0d
commit 8cf4bf7a45
1 changed files with 1 additions and 1 deletions

View File

@ -59,4 +59,4 @@ async def view_longpoll(request):
return stream(g, content_type="text/event-stream") return stream(g, content_type="text/event-stream")
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=False, host='::', port=5000) app.run(debug=False, port=5000)