We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b255334 commit cfec417Copy full SHA for cfec417
labelbox/schema/dataset.py
@@ -298,10 +298,6 @@ def convert_item(item):
298
for key, value in item.items()
299
}
300
301
- if not isinstance(items, list):
302
- raise ValueError(
303
- f"Must pass a list to create_data_rows. Found {type(items)}")
304
-
305
with ThreadPoolExecutor(file_upload_thread_count) as executor:
306
futures = [executor.submit(convert_item, item) for item in items]
307
items = [future.result() for future in as_completed(futures)]
0 commit comments