Source code for ooodev.formatters.only_ignore_kind

from enum import IntEnum


[docs]class OnlyIgnoreKind(IntEnum): NONE = 0 ONLY = 1 IGNORE = 2
__all__ = ["OnlyIgnoreKind"]