summaryrefslogtreecommitdiff
path: root/tests/mail/custombackend.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mail/custombackend.py')
-rw-r--r--tests/mail/custombackend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mail/custombackend.py b/tests/mail/custombackend.py
index ac631a6e1b..fd57777787 100644
--- a/tests/mail/custombackend.py
+++ b/tests/mail/custombackend.py
@@ -6,7 +6,7 @@ from django.core.mail.backends.base import BaseEmailBackend
class EmailBackend(BaseEmailBackend):
def __init__(self, *args, **kwargs):
- super(EmailBackend, self).__init__(*args, **kwargs)
+ super().__init__(*args, **kwargs)
self.test_outbox = []
def send_messages(self, email_messages):