Skip to content

Commit 54583ff

Browse files
authored
Merge pull request #300
remove un needed explicit super class call
2 parents ca18d0e + 8cc6ae1 commit 54583ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

braces/forms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ class UserKwargModelFormMixin:
1111
def __init__(self, *args, **kwargs):
1212
"""Remove the user from **kwargs and assign it on the object"""
1313
self.user = kwargs.pop("user", None)
14-
super(UserKwargModelFormMixin, self).__init__(*args, **kwargs)
14+
super().__init__(*args, **kwargs)

0 commit comments

Comments
 (0)