(self, value: Any, instance: type[Model] | Model)
| 831 | super().__init__(**kwargs) |
| 832 | |
| 833 | def to_db_value(self, value: Any, instance: type[Model] | Model) -> str | None: |
| 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): |
nothing calls this directly
no outgoing calls
no test coverage detected