From 559254ab0730f7f413b4a41af8b6b99be42180bf Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Mon, 3 Jun 2024 08:23:31 -0600 Subject: [PATCH] disable linting --- src/registrar/utility/email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/utility/email.py b/src/registrar/utility/email.py index 973aa8716..ceea1afc9 100644 --- a/src/registrar/utility/email.py +++ b/src/registrar/utility/email.py @@ -37,7 +37,7 @@ def send_templated_email( Raises EmailSendingError if SES client could not be accessed """ - if flag_is_active(None, "disable_email_sending") and not settings.IS_PRODUCTION: + if flag_is_active(None, "disable_email_sending") and not settings.IS_PRODUCTION: # noqa message = "Could not send email. Email sending is disabled due to flag 'disable_email_sending'." raise EmailSendingError(message)