File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libs/labelbox/src/labelbox/schema Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1405,7 +1405,7 @@ def task_queues(self) -> List[TaskQueue]:
1405
1405
def move_data_rows_to_task_queue (
1406
1406
self ,
1407
1407
data_row_ids : DataRowIdentifiers ,
1408
- task_queue_id : Union [str , None ] ,
1408
+ task_queue_id : Optional [str ] = None ,
1409
1409
):
1410
1410
"""
1411
1411
@@ -1414,7 +1414,7 @@ def move_data_rows_to_task_queue(
1414
1414
Args:
1415
1415
data_row_ids: a list of data row ids to be moved. This should be a DataRowIdentifiers object
1416
1416
DataRowIdentifier objects are lists of ids or global keys. A DataIdentifier object can be a UniqueIds or GlobalKeys class.
1417
- task_queue_id: the task queue id to be moved to, or None to specify the "Done" queue
1417
+ task_queue_id: the task queue id to be moved to, or None to specify the "Done" queue. Defaults to None.
1418
1418
1419
1419
Returns:
1420
1420
None if successful, or a raised error on failure
You can’t perform that action at this time.
0 commit comments