From ac10627e0de20988df9dbfad3385b60cf275a6a0 Mon Sep 17 00:00:00 2001 From: Vladislav Date: Mon, 11 Mar 2024 15:41:47 +0500 Subject: [PATCH] Fix handling of skipped validation error --- import_export_extensions/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import_export_extensions/resources.py b/import_export_extensions/resources.py index a776914..55f12f7 100644 --- a/import_export_extensions/resources.py +++ b/import_export_extensions/resources.py @@ -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