diff options
author | Muriithi Frederick Muriuki | 2021-08-17 11:42:20 +0300 |
---|---|---|
committer | Arun Isaac | 2021-08-18 08:47:34 +0000 |
commit | d54e2c4b48b24ebbccc8b2ae183fffd645e21344 (patch) | |
tree | d4fc8c4ed37985172dcc5e5faba35d4ef42ad046 /wsgi.py | |
parent | d10ee60d2200eefb29a22b0a84cd19569235b354 (diff) | |
download | genenetwork3-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.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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__": |