From 23bbfb955f5c0767b0024a7af95b1bfc424041a7 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 25 Mar 2019 10:47:00 +0000 Subject: [PATCH] Fix isort breaking things --- app/main/__init__.py | 6 +++--- app/status/__init__.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) 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