(self, value: Any)
| 834 | return value and str(value) |
| 835 | |
| 836 | def to_python_value(self, value: Any) -> UUID | None: |
| 837 | if value is None or isinstance(value, UUID): |
| 838 | return value |
| 839 | return UUID(value) |
| 840 | |
| 841 | |
| 842 | class BinaryField(Field[T_BINARY], bytes): # type: ignore |
nothing calls this directly
no outgoing calls
no test coverage detected