mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 09:08:25 -04:00
Fix isort breaking things
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
from flask import Blueprint
|
from flask import Blueprint
|
||||||
|
|
||||||
from app.main.views import ( # noqa
|
main = Blueprint('main', __name__)
|
||||||
|
|
||||||
|
from app.main.views import ( # noqa isort:skip
|
||||||
add_service,
|
add_service,
|
||||||
agreement,
|
agreement,
|
||||||
api_keys,
|
api_keys,
|
||||||
@@ -34,5 +36,3 @@ from app.main.views import ( # noqa
|
|||||||
user_profile,
|
user_profile,
|
||||||
verify,
|
verify,
|
||||||
)
|
)
|
||||||
|
|
||||||
main = Blueprint('main', __name__) # noqa
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
from flask import Blueprint
|
from flask import Blueprint
|
||||||
|
|
||||||
from app.status.views import healthcheck # noqa
|
|
||||||
|
|
||||||
status = Blueprint('status', __name__)
|
status = Blueprint('status', __name__)
|
||||||
|
|
||||||
|
from app.status.views import healthcheck # noqa isort:skip
|
||||||
|
|||||||
Reference in New Issue
Block a user