From 9444310d4b2090bf54f4b29c8c124e8e0708d533 Mon Sep 17 00:00:00 2001 From: Andrew Shumway Date: Mon, 23 Oct 2023 10:33:37 -0600 Subject: [PATCH] Fix linting/imports --- app/service/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/service/rest.py b/app/service/rest.py index a75f53b4f..b05763c3f 100644 --- a/app/service/rest.py +++ b/app/service/rest.py @@ -1043,4 +1043,4 @@ def check_if_reply_to_address_already_in_use(service_id, email_address): @service_blueprint.route("//notification-count", methods=["GET"]) def get_notification_count_for_service_id(service_id): count = dao_get_notification_count_for_service(service_id=service_id) - return jsonify(count=count), 200 \ No newline at end of file + return jsonify(count=count), 200