We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74cb3e0 commit c0ebce8Copy full SHA for c0ebce8
src/odoo_data_flow/import_threaded.py
@@ -1071,13 +1071,6 @@ def _execute_load_batch( # noqa: C901
1071
failed_line = [*list(line), f"Load failed: {error_msg}"]
1072
aggregated_failed_lines.append(failed_line)
1073
1074
- # Create a new dictionary containing only the items with
1075
- # integer values
1076
- filtered_id_map = {
1077
- key: value
1078
- for key, value in id_map.items()
1079
- if isinstance(value, int)
1080
- }
1081
# Always update the aggregated map with successful records
1082
# Create a new dictionary containing only the items with integer values
1083
filtered_id_map = {
0 commit comments