We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc39734 commit 85194a0Copy full SHA for 85194a0
labelbox/schema/queue_mode.py
@@ -2,7 +2,7 @@
2
3
4
class QueueMode(str, Enum):
5
- Batch = "BATCHES"
+ Batch = "BATCH"
6
Dataset = "DATA_SET"
7
8
@classmethod
tests/unit/test_queue_mode.py
@@ -8,7 +8,7 @@ def test_parse_deprecated_catalog():
9
10
def test_parse_batches():
11
- assert QueueMode("BATCHES") == QueueMode.Batch
+ assert QueueMode("BATCH") == QueueMode.Batch
12
13
14
def test_parse_data_set():
0 commit comments