@@ -125,15 +125,18 @@ def update(self, **kwargs):
125125 Note that the queue_mode cannot be changed after a project has been created.
126126
127127 Additionally, the quality setting cannot be changed after a project has been created. The quality mode
128- for a project is inferred through the following attributes:
129- Benchmark:
130- auto_audit_number_of_labels = 1
131- auto_audit_percentage = 1.0
132- Consensus:
133- auto_audit_number_of_labels > 1
134- auto_audit_percentage <= 1.0
135- Attempting to switch between benchmark and consensus modes is an invalid operation and will result
136- in an error.
128+ for a project is inferred through the following attributes:
129+
130+ Benchmark:
131+ auto_audit_number_of_labels = 1
132+ auto_audit_percentage = 1.0
133+
134+ Consensus:
135+ auto_audit_number_of_labels > 1
136+ auto_audit_percentage <= 1.0
137+
138+ Attempting to switch between benchmark and consensus modes is an invalid operation and will result
139+ in an error.
137140 """
138141
139142 media_type = kwargs .get ("media_type" )
@@ -151,7 +154,7 @@ def members(self) -> PaginatedCollection:
151154 """ Fetch all current members for this project
152155
153156 Returns:
154- A `PaginatedCollection of `ProjectMember`s
157+ A `PaginatedCollection` of `ProjectMember`s
155158
156159 """
157160 id_param = "projectId"
@@ -1245,7 +1248,7 @@ def batches(self) -> PaginatedCollection:
12451248 """ Fetch all batches that belong to this project
12461249
12471250 Returns:
1248- A `PaginatedCollection of `Batch`es
1251+ A `PaginatedCollection` of `Batch`es
12491252 """
12501253 id_param = "projectId"
12511254 query_str = """query GetProjectBatchesPyApi($from: String, $first: PageSize, $%s: ID!) {
@@ -1263,7 +1266,7 @@ def task_queues(self) -> List[TaskQueue]:
12631266 """ Fetch all task queues that belong to this project
12641267
12651268 Returns:
1266- A `List of `TaskQueue`s
1269+ A `List` of `TaskQueue`s
12671270 """
12681271 query_str = """query GetProjectTaskQueuesPyApi($projectId: ID!) {
12691272 project(where: {id: $projectId}) {
0 commit comments