Skip to content

Commit 0ff51c0

Browse files
committed
Removed Meta parent class.
1 parent e1bd0ea commit 0ff51c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/emailuser/forms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44

55
class EmailUserCreationForm(UserCreationForm):
6-
class Meta(UserCreationForm):
6+
class Meta():
77
model = get_user_model()
88
fields = ('email', 'name')
99

1010

1111
class EmailUserChangeForm(UserChangeForm):
12-
class Meta:
12+
class Meta():
1313
model = get_user_model()
1414
fields = ('email', 'name')

0 commit comments

Comments
 (0)