Files
kittycad.py/kittycad/models/system_info_cgroup_version_enum.py

11 lines
175 B
Python
Raw Normal View History

from enum import Enum
class SystemInfoCgroupVersionEnum(str, Enum):
EMPTY = ''
ONE = '1'
TWO = '2'
def __str__(self) -> str:
return str(self.value)