aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2021-03-01 20:02:34 -0500
committerGitHub <noreply@github.com>2021-03-01 20:02:34 -0500
commit8139cc88f9a2ce69909b1c9ed57b70fda15dbbf8 (patch)
treed61df9691f62952643b5062b32aaac4fdb09df6e /wsgi.py
parentd1bbe068e77e2504d6e300fdf586ddd8afc29a2f (diff)
parent0d57a01ba2c4da533ad4459fcf5a45b79a17cd53 (diff)
Merge pull request #1 from galenguyer/v2
v2 - SQLAlchemy
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']))