From 889e8b3b203e783d4c676fd5a8aa840232831bfb Mon Sep 17 00:00:00 2001 From: Alexandre CHAZAL Date: Mon, 6 Dec 2021 19:35:43 +0100 Subject: [PATCH] fix(wsgi): added docstring --- wsgi.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/wsgi.py b/wsgi.py index 3f0abc1..da001fe 100644 --- a/wsgi.py +++ b/wsgi.py @@ -1,6 +1,11 @@ -import os, sys +""" +WSGI entrypont +""" +import os +import sys +from app import create_app + app_path = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, app_path) -from app import create_app application = create_app()