Coverage for lintro / enums / config_key.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2026-04-03 18:53 +0000

1"""Configuration key definitions. 

2 

3Provides canonical identifiers for configuration keys used across the codebase. 

4""" 

5 

6from enum import StrEnum, auto 

7 

8 

9class ConfigKey(StrEnum): 

10 """Supported configuration key identifiers.""" 

11 

12 POST_CHECKS = auto() 

13 VERSIONS = auto() 

14 DEFAULTS = auto()