Skip to content

Commit 40e79c4

Browse files
committed
added in feedback
1 parent 1af3e79 commit 40e79c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/labelbox/src/labelbox/schema/project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@ def task_queues(self) -> List[TaskQueue]:
14051405
def move_data_rows_to_task_queue(
14061406
self,
14071407
data_row_ids: DataRowIdentifiers,
1408-
task_queue_id: Union[str, None],
1408+
task_queue_id: Optional[str] = None,
14091409
):
14101410
"""
14111411
@@ -1414,7 +1414,7 @@ def move_data_rows_to_task_queue(
14141414
Args:
14151415
data_row_ids: a list of data row ids to be moved. This should be a DataRowIdentifiers object
14161416
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.
14181418
14191419
Returns:
14201420
None if successful, or a raised error on failure

0 commit comments

Comments
 (0)