(value: Any)
| 19 | |
| 20 | |
| 21 | def _none_to_str(value: Any) -> str: |
| 22 | return "" if value is None else str(value) |
| 23 | |
| 24 | |
| 25 | # String field that coerces None -> "" and any value -> str via pydantic. |
nothing calls this directly
no outgoing calls
no test coverage detected