(value)
| 21 | |
| 22 | |
| 23 | def sanitize_str_field_value(value): # type: (Any) -> str |
| 24 | if not isinstance(value, str): |
| 25 | value = str(value) if value else '' |
| 26 | return value |
| 27 | |
| 28 | |
| 29 | def sanitize_int_field_value(value, *, default=0): # type: (Any, *Any, Optional[Any]) -> int |
no outgoing calls
no test coverage detected