aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2021-02-25 22:00:18 -0500
committerGalen Guyer <galen@galenguyer.com>2021-02-25 22:00:18 -0500
commit07ef35d0892ce652b2421ef2d101c743593ccf46 (patch)
tree30d8b4b8bbb0214ccdd42558c23650c549002948 /wsgi.py
parent72b07e05e50c2c93d6f195a3ebe15544c4afe171 (diff)
Clean up config and wsgi
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgi.py b/wsgi.py
index 31fc3f5..cd51ea3 100644
--- a/wsgi.py
+++ b/wsgi.py
@@ -4,5 +4,5 @@ Primary entry point for the app
from poller import APP
-if __name__ == "__main__":
- APP.run(host=APP.config["IP"], port=int(APP.config["PORT"]))
+if __name__ == '__main__':
+ APP.run(host=APP.config['IP'], port=int(APP.config['PORT']))