Fix isort breaking things

This commit is contained in:
Chris Hill-Scott
2019-03-25 10:47:00 +00:00
parent cff009bc0d
commit 23bbfb955f
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,8 @@
from flask import Blueprint
from app.main.views import ( # noqa
main = Blueprint('main', __name__)
from app.main.views import ( # noqa isort:skip
add_service,
agreement,
api_keys,
@@ -34,5 +36,3 @@ from app.main.views import ( # noqa
user_profile,
verify,
)
main = Blueprint('main', __name__) # noqa

View File

@@ -1,5 +1,5 @@
from flask import Blueprint
from app.status.views import healthcheck # noqa
status = Blueprint('status', __name__)
from app.status.views import healthcheck # noqa isort:skip