From 7953be751eb6e3dca25f895c7189b456547ac61d Mon Sep 17 00:00:00 2001 From: Christopher Broderick Date: Sat, 10 May 2025 13:18:10 +0100 Subject: [PATCH] Fix linting error --- helpdesk/tests/test_ticket_submission.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk/tests/test_ticket_submission.py b/helpdesk/tests/test_ticket_submission.py index e86691b1..0b29e8ac 100644 --- a/helpdesk/tests/test_ticket_submission.py +++ b/helpdesk/tests/test_ticket_submission.py @@ -511,7 +511,7 @@ class EmailInteractionsTestCase(TestCase): ) # Check that the CC duplicate was still sent a notification email email_count = len(mail.outbox) - found = any(dup_email in email.to for email in mail.outbox[:email_count - 1]) + found = any(dup_email in email.to for email in mail.outbox[: email_count - 1]) self.assertTrue( found, "The duplicated email across user ID's was not sent a notification." )