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(
13181318 return True
13191319
13201320 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
13221326
13231327 More information can be found here:
13241328 https://docs.labelbox.com/en/quality-assurance/review-labels#configure-review-percentage
@@ -1328,6 +1332,8 @@ def upsert_review_queue(self, quota_factor) -> None:
13281332 to reinitiate. Between 0 and 1.
13291333 """
13301334
1335+ logger .warning ("Updating the review queue is no longer supported." )
1336+
13311337 if not 0. <= quota_factor <= 1. :
13321338 raise ValueError ("Quota factor must be in the range of [0,1]" )
13331339
You can’t perform that action at this time.
0 commit comments