Skip to content

Commit bd02cce

Browse files
committed
Fix add_nodes() too
1 parent 4fed847 commit bd02cce

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libs/labelbox/src/labelbox/schema/workflow/workflow.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -644,6 +644,7 @@ def add_node(
644644
name: str = "Review task",
645645
instructions: Optional[str] = None,
646646
group_assignment: Optional[Union[str, List[str], Any]] = None,
647+
max_contributions_per_user: Optional[int] = None,
647648
**kwargs,
648649
) -> ReviewNode: ...
649650

libs/labelbox/src/labelbox/schema/workflow/workflow_operations.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ def add_node(
255255
name: str = "Review task",
256256
instructions: Optional[str] = None,
257257
group_assignment: Optional[Union[str, List[str], Any]] = None,
258+
max_contributions_per_user: Optional[int] = None,
258259
**kwargs: Any,
259260
) -> ReviewNode: ...
260261

0 commit comments

Comments
 (0)