Skip to content

Commit 358239a

Browse files
committed
Remove new entries in unsupported members
1 parent 7ba12ab commit 358239a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

labelbox/schema/media_type.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@ def is_supported(cls, value):
4343
@classmethod
4444
def get_supported_members(cls):
4545
return [
46-
item for item in cls.__members__ if item not in [
47-
"LLMPromptCreation", "LLMPromptResponseCreation", "Unknown",
48-
"Unsupported"
49-
]
46+
item for item in cls.__members__
47+
if item not in ["Unknown", "Unsupported"]
5048
]
5149

5250

0 commit comments

Comments
 (0)