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

12 lines
216 B
Python

from enum import Enum
class AnnotationTextAlignmentY(str, Enum):
""" Vertical Text aligment """ # noqa: E501
BOTTOM = 'bottom'
CENTER = 'center'
TOP = 'top'
def __str__(self) -> str:
return str(self.value)