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

1"""Boolean string value definitions. 

2 

3Provides canonical identifiers for boolean string values used in parsing. 

4""" 

5 

6from enum import StrEnum, auto 

7 

8 

9class BooleanString(StrEnum): 

10 """Supported boolean string value identifiers.""" 

11 

12 TRUE = auto() 

13 FALSE = auto() 

14 NONE = auto() 

15 NULL = auto()