(self, other: Point)
| 54 | return (self.x, self.y) < (other.x, other.y) |
| 55 | |
| 56 | def __gt__(self, other: Point) -> bool: |
| 57 | return (self.x, self.y) > (other.x, other.y) |
| 58 | |
| 59 | def __add__(self, p: Point) -> Point: |
| 60 | return Point(self.x + p.x, self.y + p.y) |
nothing calls this directly
no outgoing calls
no test coverage detected