mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
Fix isort breaking things
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user