Files
kittycad.py/kittycad/models/annotation_line_end.py
Jess Frazelle 12c164620b updates
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-09-29 16:05:40 -07:00

11 lines
192 B
Python

from enum import Enum
class AnnotationLineEnd(str, Enum):
""" Annotation line end type """ # noqa: E501
NONE = 'none'
ARROW = 'arrow'
def __str__(self) -> str:
return str(self.value)