mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-09 12:47:44 +00:00
7 lines
152 B
Python
7 lines
152 B
Python
from enum import Enum
|
|
|
|
class Skip(Enum):
|
|
= "0"
|
|
V1 = "1"
|
|
def list():
|
|
return list(map(lambda x: x.value, Skip._member_map_.values())) |