(self)
| 459 | """ |
| 460 | |
| 461 | def get_prep_lookup(self): |
| 462 | if isinstance(self.rhs, float): |
| 463 | self.rhs = math.ceil(self.rhs) |
| 464 | return super().get_prep_lookup() |
| 465 | |
| 466 | |
| 467 | @IntegerField.register_lookup |
nothing calls this directly
no test coverage detected