Coverage for lintro / enums / boolean_string.py: 100%
6 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-04-03 18:53 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-04-03 18:53 +0000
1"""Boolean string value definitions.
3Provides canonical identifiers for boolean string values used in parsing.
4"""
6from enum import StrEnum, auto
9class BooleanString(StrEnum):
10 """Supported boolean string value identifiers."""
12 TRUE = auto()
13 FALSE = auto()
14 NONE = auto()
15 NULL = auto()