(self, instance, instance_type)
| 193 | self.internal_name = "_" + column_name |
| 194 | |
| 195 | def __get__(self, instance, instance_type): |
| 196 | if instance is None: |
| 197 | return self |
| 198 | return getattr(instance, self.internal_name, "") |
| 199 | |
| 200 | def __set__(self, instance, value): |
| 201 | adjusted_value = self.convert(value) |
nothing calls this directly
no outgoing calls
no test coverage detected