8000 Remove old py2 remnants · codingjoe/django-mail-auth@b618eb9 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit b618eb9

Browse files
committed
Remove old py2 remnants
1 parent 4893f1c commit b618eb9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

mailauth/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class EmailLoginForm(BaseLoginForm):
9393

9494
def __init__(self, request, *args, **kwargs):
9595
self.request = request
96-
super(EmailLoginForm, self).__init__(*args, **kwargs)
96+
super().__init__(*args, **kwargs)
9797

9898
self.field_name = get_user_model().get_email_field_name()
9999
model_field = get_user_model()._meta.get_field(self.field_name)

tests/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
# -*- coding: utf8 -*-

0 commit comments

Comments
 (0)
0