Skip to content

Commit

Permalink
Merge pull request #300
Browse files Browse the repository at this point in the history
remove un needed explicit super class call
  • Loading branch information
kennethlove authored Oct 9, 2024
2 parents ca18d0e + 8cc6ae1 commit 54583ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion braces/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ class UserKwargModelFormMixin:
def __init__(self, *args, **kwargs):
"""Remove the user from **kwargs and assign it on the object"""
self.user = kwargs.pop("user", None)
super(UserKwargModelFormMixin, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)

0 comments on commit 54583ff

Please sign in to comment.