(self, other: Point)
| 51 | self.y = y |
| 52 | |
| 53 | def __lt__(self, other: Point) -> bool: |
| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected