Remove unused variable

This changeset follows up PR #636 to remove a variable no longer used in the go live email template.

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2023-12-06 10:13:27 -05:00
parent 68b023b2f9
commit f72922ffb1

View File

@@ -261,8 +261,7 @@ def update_service(service_id):
service_id=service_id, service_id=service_id,
template_id=current_app.config["SERVICE_NOW_LIVE_TEMPLATE_ID"], template_id=current_app.config["SERVICE_NOW_LIVE_TEMPLATE_ID"],
personalisation={ personalisation={
"service_name": current_data["name"], "service_name": current_data["name"]
"message_limit": "{:,}".format(current_data["message_limit"]),
}, },
include_user_fields=["name"], include_user_fields=["name"],
) )