Skip to content

Commit ebd5c00

Browse files
author
Max Wang
committed
remove dup input validation
1 parent abd25ef commit ebd5c00

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/dataverse_sdk/odata.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,6 @@ def _delete_multiple(
291291
292292
Returns the asynchronous job identifier reported by the BulkDelete action.
293293
"""
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")
298294
targets = [rid for rid in ids if rid]
299295
if not targets:
300296
return None

0 commit comments

Comments
 (0)