Skip to content

Commit ad9af19

Browse files
author
Richard Sun
committed
[QQC-558] Review feedback
1 parent 7f76462 commit ad9af19

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
### Changed
77
* Updated docs for deprecated methods `_update_queue_mode` and `get_queue_mode` in `Project`
88
* Use the `queue_mode` attribute in `Project` to get and set the queue mode instead
9+
* For more information, visit https://docs.labelbox.com/reference/migrating-to-workflows#upcoming-changes
910
### Fixed
1011

1112
# Version 3.27.1 (2022-09-16)

labelbox/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ def create_project(self, **kwargs) -> Project:
611611
612612
Attribute values are passed as keyword arguments.
613613
614-
>>> project = client.create_project(name="<project_name>", description="<project_description>")
614+
>>> project = client.create_project(name="<project_name>", description="<project_description>", queue_mode=QueueMode.Batch)
615615
616616
Args:
617617
**kwargs: Keyword arguments with Project attribute values.

labelbox/schema/project.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ def update(self, **kwargs):
107107
auto_audit_percentage <= 1.0
108108
Attempting to switch between benchmark and consensus modes is an invalid operation and will result
109109
in an error.
110-
111-
For more information, visit https://docs.labelbox.com/reference/migrating-to-workflows#upcoming-changes
112110
"""
113111

114112
media_type = kwargs.get("media_type")

0 commit comments

Comments
 (0)