Skip to content

Commit 7175ef6

Browse files
committed
feat(lab-4343) remove client specific status
1 parent 70fbb4b commit 7175ef6

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/kili/domain/asset/asset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
AssetStatus = Literal["TODO", "ONGOING", "LABELED", "REVIEWED", "TO_REVIEW"]
1919

20-
StatusInStep = Literal["TO_DO", "DOING", "PARTIALLY_DONE", "REDO", "DONE", "SKIPPED"]
20+
StatusInStep = Literal["TO_DO", "IN_PROGRESS", "PARTIALLY_DONE", "REWORK", "DONE", "SKIPPED"]
2121

2222

2323
@dataclass

src/kili/llm/presentation/client/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def export(
9898
step_name_in: Returned assets are in a step whose name belong to that list, if given.
9999
Only applicable if the project is in WorkflowV2.
100100
step_status_in: Returned assets have the status of their step that belongs to that list, if given.
101-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
101+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
102102
Only applicable if the project is in WorkflowV2.
103103
!!! Example
104104
```python

src/kili/presentation/client/asset.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def assets(
385385
step_status_in: Returned assets have the status in their step that belongs to that list, if given.
386386
Only applicable if the project is in WorkflowV2.
387387
step_status_not_in: Returned assets have the status in their step that does not belong to that list, if given.
388-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
388+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
389389
Only applicable if the project is in WorkflowV2.
390390
391391
!!! info "Dates format"
@@ -719,10 +719,10 @@ def count_assets(
719719
step_name_not_in: Returned assets are in a step whose name does not belong to that list, if given.
720720
Only applicable if the project is in WorkflowV2.
721721
step_status_in: Returned assets have the status of their step that belongs to that list, if given.
722-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
722+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
723723
Only applicable if the project is in WorkflowV2.
724724
step_status_not_in: Returned assets have the status of their step that does not belong to that list, if given.
725-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
725+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
726726
Only applicable if the project is in WorkflowV2.
727727
step_name_and_status_in: Returned assets match at least one of the given (step_name, step_status) pairs.
728728
Only applicable if the project is in WorkflowV2.

src/kili/presentation/client/label.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def count_labels(
102102
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
103103
Only applicable if the project is in WorkflowV2.
104104
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
105-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
105+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
106106
Only applicable if the project is in WorkflowV2.
107107
author_in: Returned labels should have been made by authors in that list, if given.
108108
An author can be designated by the first name, the last name, or the first name + last name.
@@ -401,7 +401,7 @@ def labels(
401401
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
402402
Only applicable if the project is in WorkflowV2.
403403
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
404-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
404+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
405405
Only applicable if the project is in WorkflowV2.
406406
author_in: Returned labels should have been made by authors in that list, if given.
407407
An author can be designated by the first name, the last name, or the first name + last name.
@@ -650,7 +650,7 @@ def predictions(
650650
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
651651
Only applicable if the project is in WorkflowV2.
652652
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
653-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
653+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
654654
Only applicable if the project is in WorkflowV2.
655655
author_in: Returned labels should have been made by authors in that list, if given.
656656
An author can be designated by the first name, the last name, or the first name + last name.
@@ -843,7 +843,7 @@ def inferences(
843843
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
844844
Only applicable if the project is in WorkflowV2.
845845
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
846-
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
846+
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
847847
Only applicable if the project is in WorkflowV2.
848848
author_in: Returned labels should have been made by authors in that list, if given.
849849
An author can be designated by the first name, the last name, or the first name + last name.

0 commit comments

Comments
 (0)