Run isort

This commit is contained in:
Chris Hill-Scott
2019-03-25 10:25:05 +00:00
parent 022d080ea6
commit cff009bc0d
5 changed files with 78 additions and 71 deletions

View File

@@ -1,38 +1,38 @@
from flask import Blueprint
main = Blueprint('main', __name__) # noqa
from app.main.views import ( # noqa
add_service,
agreement,
api_keys,
choose_account,
code_not_received,
conversation,
dashboard,
email_branding,
feedback,
find_users,
forgot_password,
inbound_number,
index,
invites,
jobs,
letter_branding,
manage_users,
new_password,
notifications,
organisations,
platform_admin,
providers,
register,
send,
service_settings,
sign_in,
sign_out,
register,
two_factor,
verify,
send,
add_service,
code_not_received,
jobs,
dashboard,
templates,
service_settings,
forgot_password,
new_password,
styleguide,
templates,
two_factor,
user_profile,
choose_account,
api_keys,
manage_users,
invites,
feedback,
providers,
find_users,
platform_admin,
email_branding,
letter_branding,
conversation,
organisations,
notifications,
inbound_number,
agreement,
verify,
)
main = Blueprint('main', __name__) # noqa