Skip to content

Commit 85194a0

Browse files
committed
Batches -> Batch
1 parent bc39734 commit 85194a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

labelbox/schema/queue_mode.py

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

33

44
class QueueMode(str, Enum):
5-
Batch = "BATCHES"
5+
Batch = "BATCH"
66
Dataset = "DATA_SET"
77

88
@classmethod

tests/unit/test_queue_mode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def test_parse_deprecated_catalog():
88

99

1010
def test_parse_batches():
11-
assert QueueMode("BATCHES") == QueueMode.Batch
11+
assert QueueMode("BATCH") == QueueMode.Batch
1212

1313

1414
def test_parse_data_set():

0 commit comments

Comments
 (0)