aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorMuriithi Frederick Muriuki2021-08-17 11:42:20 +0300
committerMuriithi Frederick Muriuki2021-08-17 11:42:20 +0300
commitd491be2057843921cc67bd1c4b1ae612d9f15d34 (patch)
treed4fc8c4ed37985172dcc5e5faba35d4ef42ad046 /wsgi.py
parent99bfda81abe76b3bb3f7034cf6cdac21c8d50726 (diff)
downloadgenenetwork3-d491be2057843921cc67bd1c4b1ae612d9f15d34.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__":