From 07ef35d0892ce652b2421ef2d101c743593ccf46 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Thu, 25 Feb 2021 22:00:18 -0500 Subject: Clean up config and wsgi --- wsgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wsgi.py') 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'])) -- cgit v1.2.3