Build a tolerant lookup key for must-read matching.
(value: str)
| 119 | |
| 120 | |
| 121 | def normalize_must_read_value(value: str) -> str: |
| 122 | """Build a tolerant lookup key for must-read matching.""" |
| 123 | return clean_must_read_value(value).casefold() |
| 124 | |
| 125 | |
| 126 | def _coerce_float(value: Any, default: float = 0.0) -> float: |
no test coverage detected