Skip to content

Commit 6afe108

Browse files
author
Matt Sokoloff
committed
add back BulkImportRequestState docs
1 parent 0cbc4a9 commit 6afe108

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

labelbox/schema/enums.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
from enum import Enum
22

33

4+
45
class BulkImportRequestState(Enum):
56
""" State of the import job when importing annotations (RUNNING, FAILED, or FINISHED).
67
7-
This object is deprecated. Please use AnnotationImportState instead.
8+
If you are not usinig MEA continue using BulkImportRequest.
9+
AnnotationImports are in beta and will change soon.
10+
11+
.. list-table::
12+
:widths: 15 150
13+
:header-rows: 1
14+
15+
* - State
16+
- Description
17+
* - RUNNING
18+
- Indicates that the import job is not done yet.
19+
* - FAILED
20+
- Indicates the import job failed. Check `BulkImportRequest.errors` for more information
21+
* - FINISHED
22+
- Indicates the import job is no longer running. Check `BulkImportRequest.statuses` for more information
823
"""
924
RUNNING = "RUNNING"
1025
FAILED = "FAILED"

0 commit comments

Comments
 (0)