diff --git a/app/main/__init__.py b/app/main/__init__.py index ae362dbf8..ef20f66e6 100644 --- a/app/main/__init__.py +++ b/app/main/__init__.py @@ -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 diff --git a/app/status/__init__.py b/app/status/__init__.py index 82a7536d2..5736b1267 100644 --- a/app/status/__init__.py +++ b/app/status/__init__.py @@ -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