notify-api-412 use black to enforce python coding style

This commit is contained in:
Kenneth Kehl
2023-08-25 09:12:23 -07:00
parent c6eb007386
commit 8c9721d8e2
201 changed files with 31660 additions and 28105 deletions

View File

@@ -5,9 +5,9 @@ from app.main import main
from app.utils.user import user_is_platform_admin
@main.route('/inbound-sms-admin', methods=['GET', 'POST'])
@main.route("/inbound-sms-admin", methods=["GET", "POST"])
@user_is_platform_admin
def inbound_sms_admin():
data = inbound_number_client.get_all_inbound_sms_number_service()
return render_template('views/inbound-sms-admin.html', inbound_num_list=data)
return render_template("views/inbound-sms-admin.html", inbound_num_list=data)