13 lines
239 B
Python
13 lines
239 B
Python
|
|
from enum import Enum
|
||
|
|
|
||
|
|
|
||
|
|
class AnnotationTextAlignmentX(str, Enum):
|
||
|
|
"""Horizontal Text aligment""" # noqa: E501
|
||
|
|
|
||
|
|
LEFT = "left"
|
||
|
|
CENTER = "center"
|
||
|
|
RIGHT = "right"
|
||
|
|
|
||
|
|
def __str__(self) -> str:
|
||
|
|
return str(self.value)
|