Skip to content

Commit 33554c2

Browse files
author
Matt Sokoloff
committed
docstring update
1 parent 99c0190 commit 33554c2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

labelbox/schema/data_row_metadata.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -333,14 +333,15 @@ def _batch_delete(
333333
def bulk_export(self, data_row_ids: List[str]) -> List[DataRowMetadata]:
334334
""" Exports metadata for a list of data rows
335335
336-
>>> mdo.batch_delete([data_row.uid for data_row in data_rows])
336+
>>> mdo.bulk_export([data_row.uid for data_row in data_rows])
337337
338338
Args:
339339
data_row_ids: List of data data rows to fetch metadata for
340-
341340
Returns:
342-
list of unsuccessful deletions.
343-
An empty list means all data rows were successfully deleted.
341+
A list of DataRowMetadata.
342+
There will be one DataRowMetadata for each data_row_id passed in.
343+
This is true even if the data row does not have any meta data.
344+
Data rows without metadata will have empty `fields`.
344345
345346
"""
346347

0 commit comments

Comments
 (0)