Files
kittycad.py/kittycad/models/text_to_cad_model.py

14 lines
269 B
Python
Raw Normal View History

from enum import Enum
class TextToCadModel(str, Enum):
"""A type of Text-to-CAD model.""" # noqa: E501
"""# CAD. """ # noqa: E501
CAD = "cad"
"""# KCL. """ # noqa: E501
KCL = "kcl"
def __str__(self) -> str:
return str(self.value)