We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1845941 commit 9a11449Copy full SHA for 9a11449
ckanext/recombinant/logic.py
@@ -479,7 +479,8 @@ def recombinant_datastore_upsert(up_func: Action,
479
_error_dict = dict(e.error_dict)
480
if 'records' not in _error_dict:
481
raise
482
- _error_dict['records'] = list(_error_dict['records'])
+ # type_ignore_reason: incomplete typing
483
+ _error_dict['records'] = list(_error_dict['records']) # type: ignore
484
for record_errs in _error_dict['records']:
485
if not isinstance(record_errs, dict):
486
continue
0 commit comments