(val: str | None)
| 339 | |
| 340 | |
| 341 | def maybe_coerce_boolean(val: str | None) -> bool | None: |
| 342 | if val is None: |
| 343 | return None |
| 344 | return coerce_boolean(val) |
| 345 | |
| 346 | |
| 347 | def removeprefix(string: str, prefix: str) -> str: |
nothing calls this directly
no test coverage detected