Overall linting #3

Merged
alexandre merged 13 commits from linting into master 2021-12-06 21:29:02 +01:00
Showing only changes of commit 889e8b3b20 - Show all commits

View File

@@ -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__)) app_path = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, app_path) sys.path.insert(0, app_path)
from app import create_app
application = create_app() application = create_app()