(value: str)
| 261 | |
| 262 | |
| 263 | def _normalize_token(value: str) -> str: |
| 264 | token = re.sub(r"[^a-z0-9]+", "_", value.strip().lower()) |
| 265 | return token.strip("_") |
| 266 | |
| 267 | |
| 268 | def _range_midpoint(values: tuple[float, float]) -> float: |
no outgoing calls
no test coverage detected