Skip to content

Commit 6af82d2

Browse files
author
Piotr Delinowski
committed
Order MediaType items alphabetically
1 parent 0d37fc6 commit 6af82d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

labelbox/schema/media_type.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ class MediaType(Enum):
1010
Html = "HTML"
1111
Image = "IMAGE"
1212
Json = "JSON"
13+
LLMPromptCreation = "LLM_PROMPT_CREATION"
14+
LLMPromptResponseCreation = "LLM_PROMPT_RESPONSE_CREATION"
1315
Pdf = "PDF"
1416
Simple_Tile = "TMS_SIMPLE"
1517
Text = "TEXT"
1618
Tms_Geo = "TMS_GEO"
1719
Tms_Simple = "TMS_SIMPLE"
18-
Video = "VIDEO"
1920
Unknown = "UNKNOWN"
2021
Unsupported = "UNSUPPORTED"
21-
LLMPromptCreation = "LLM_PROMPT_CREATION"
22-
LLMPromptResponseCreation = "LLM_PROMPT_RESPONSE_CREATION"
22+
Video = "VIDEO"
2323

2424
@classmethod
2525
def _missing_(cls, name):

0 commit comments

Comments
 (0)