Duncan Tourolle 65ab46556f
Some checks failed
Python CI / test (push) Failing after 3m55s
big update with ok rendering
2025-08-27 22:22:54 +02:00

19 lines
380 B
Python

"""
Alignment options for the pyWebLayout library.
This module provides alignment-related functionality.
"""
from enum import Enum
class Alignment(Enum):
"""Text alignment options"""
LEFT = "left"
RIGHT = "right"
CENTER = "center"
JUSTIFY = "justify"
def __str__(self):
"""Return the string value of the alignment."""
return self.value