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
« prev ^ index » next coverage.py v7.13.0, created at 2026-04-03 18:53 +0000
1"""Configuration key definitions.
3Provides canonical identifiers for configuration keys used across the codebase.
4"""
6from enum import StrEnum, auto
9class ConfigKey(StrEnum):
10 """Supported configuration key identifiers."""
12 POST_CHECKS = auto()
13 VERSIONS = auto()
14 DEFAULTS = auto()