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