Check if x is in the rectangle.
(self, x)
| 17286 | return max(0, self.y1 - self.y0) |
| 17287 | |
| 17288 | def contains(self, x): |
| 17289 | """Check if x is in the rectangle.""" |
| 17290 | return self.__contains__(x) |
| 17291 | |
| 17292 | def get_area(self, *args) -> float: |
| 17293 | """Calculate area of rectangle.\nparameter is one of 'px' (default), 'in', 'cm', or 'mm'.""" |
nothing calls this directly
no test coverage detected