Remove Unnecessary F-strings

This commit is contained in:
pixeebot[bot]
2025-08-08 03:16:07 +00:00
committed by GitHub
parent 77b9701b5e
commit b559aa368c
4 changed files with 7 additions and 7 deletions

View File

@@ -52,7 +52,7 @@ class MailerSendBaseWebhookView(AnymailBaseWebhookView):
).hexdigest()
if not constant_time_compare(signature, expected_signature):
raise AnymailWebhookValidationFailure(
f"MailerSend webhook called with incorrect signature"
"MailerSend webhook called with incorrect signature"
f" (check Anymail {self._secret_setting_name} setting)"
)