We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd25ef commit ebd5c00Copy full SHA for ebd5c00
src/dataverse_sdk/odata.py
@@ -291,10 +291,6 @@ def _delete_multiple(
291
292
Returns the asynchronous job identifier reported by the BulkDelete action.
293
"""
294
- if not isinstance(ids, list):
295
- raise TypeError("ids must be list[str]")
296
- if not all(isinstance(rid, str) for rid in ids):
297
- raise TypeError("each id must be a string GUID")
298
targets = [rid for rid in ids if rid]
299
if not targets:
300
return None
0 commit comments