(self, **kwargs)
| 159 | return super().get_prep_value(value) |
| 160 | |
| 161 | def formfield(self, **kwargs): |
| 162 | kwargs.setdefault("default_bounds", self.default_bounds) |
| 163 | return super().formfield(**kwargs) |
| 164 | |
| 165 | def deconstruct(self): |
| 166 | name, path, args, kwargs = super().deconstruct() |
nothing calls this directly
no test coverage detected