Source code for ooodev.formatters.string_kind

from enum import Flag


[docs]class StringKind(Flag): """Formatter String Kind Flags""" NONE = 0 """No formatting""" LEFT_STRIP = 1 << 1 """Strip Left"""
__all__ = ["StringKind"]