Skip to content

Commit

Permalink
style: ignore arguments verification in the super __init__ call by th…
Browse files Browse the repository at this point in the history
…e AdminOnlyFieldsSerializerMixin
  • Loading branch information
William-Fernandes252 committed Nov 12, 2023
1 parent a96e0aa commit 98eb35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_activity_tracker/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, *args, **kwargs) -> None:
"admin_only", getattr(self.Meta, "admin_only", []) # type: ignore
)
)
super().__init__(*args, **kwargs)
super().__init__(*args, **kwargs) # type: ignore

context = kwargs.get("context")
if not context:
Expand Down

0 comments on commit 98eb35c

Please sign in to comment.