Examples
API
from enum import StrEnum, auto __all__ = [ 'StripOrientation' ] [docs] class StripOrientation(StrEnum): ORDINARY = auto() CROSS = auto()