File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1318,7 +1318,11 @@ def update_data_row_labeling_priority(
1318
1318
return True
1319
1319
1320
1320
def upsert_review_queue (self , quota_factor ) -> None :
1321
- """ Sets the the proportion of total assets in a project to review.
1321
+ """ Sets the proportion of total assets in a project to review.
1322
+
1323
+ Deprecation notice: This method is deprecated and will be removed in a future version. The review step was
1324
+ replaced by Workflows in order to offer more flexibility in customizing the review flow for labeling tasks.
1325
+ Read more on Workflows here: https://docs.labelbox.com/docs/workflows
1322
1326
1323
1327
More information can be found here:
1324
1328
https://docs.labelbox.com/en/quality-assurance/review-labels#configure-review-percentage
@@ -1328,6 +1332,8 @@ def upsert_review_queue(self, quota_factor) -> None:
1328
1332
to reinitiate. Between 0 and 1.
1329
1333
"""
1330
1334
1335
+ logger .warning ("Updating the review queue is no longer supported." )
1336
+
1331
1337
if not 0. <= quota_factor <= 1. :
1332
1338
raise ValueError ("Quota factor must be in the range of [0,1]" )
1333
1339
You can’t perform that action at this time.
0 commit comments