Skip to content

Commit

Permalink
Fix handling of skipped validation error
Browse files Browse the repository at this point in the history
  • Loading branch information
yalef committed Mar 11, 2024
1 parent a373b2b commit ac10627
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 @@ -161,7 +161,7 @@ def _skip_row_with_errors(
)
if row_result.validation_error is not None:
row_result.field_skipped_errors.update(
**row_result.validation_error.error_dict,
**row_result.validation_error.update_error_dict({}),
)
row_result.errors = []
row_result.validation_error = None
Expand Down

0 comments on commit ac10627

Please sign in to comment.