(self, value)
| 1574 | ) |
| 1575 | |
| 1576 | def get_prep_value(self, value): |
| 1577 | value = super().get_prep_value(value) |
| 1578 | return self.to_python(value) |
| 1579 | |
| 1580 | def get_db_prep_value(self, value, connection, prepared=False): |
| 1581 | # Casts dates into the format expected by the backend |
no test coverage detected