Update run.py

Remove use_reloader
This commit is contained in:
Chris Pritchard 2018-10-25 11:25:41 +01:00 committed by GitHub
parent 8a20d3f2d8
commit 1ffaf904b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
run.py
View file

@ -4,4 +4,4 @@ from config import PORT
from config import BIND_ADDRESS
if __name__ == '__main__':
app.run(debug = True, host=BIND_ADDRESS, port=PORT, use_reloader=False)
app.run(debug = True, host=BIND_ADDRESS, port=PORT)