aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorMuriithi Frederick Muriuki2021-08-17 11:42:20 +0300
committerArun Isaac2021-08-18 08:47:34 +0000
commitd54e2c4b48b24ebbccc8b2ae183fffd645e21344 (patch)
treed4fc8c4ed37985172dcc5e5faba35d4ef42ad046 /wsgi.py
parentd10ee60d2200eefb29a22b0a84cd19569235b354 (diff)
downloadgenenetwork3-d54e2c4b48b24ebbccc8b2ae183fffd645e21344.tar.gz
Fix obvious linting errors
* Fix linting errors that do not change the function of the code.
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/wsgi.py b/wsgi.py
index d30bc49..0fcb573 100644
--- a/wsgi.py
+++ b/wsgi.py
@@ -1,9 +1,11 @@
+"""
+WSGI application entry-point.
+"""
# import main
+from gn3.app import create_app
print("STARTING WSGI APP")
-from gn3.app import create_app
-
app = create_app()
if __name__ == "__main__":