Skip to content

Commit

Permalink
Remove not needed init args
Browse files Browse the repository at this point in the history
  • Loading branch information
yalef committed Nov 23, 2023
1 parent bc329a4 commit 3b72709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion import_export_extensions/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class TaskState(Enum):

class SkippedErrorsRowResult(results.RowResult):
"""Custom row result class with ability to store skipped errors in row."""
def __init__(self, *args, **kwargs):
def __init__(self):
self.non_field_skipped_errors: list[Error] = []
self.field_skipped_errors: dict[str, list[ValidationError]] = dict()
super().__init__()
Expand Down

0 comments on commit 3b72709

Please sign in to comment.