(self, x, y)
| 47 | """Numerical point.""" |
| 48 | |
| 49 | def __init__(self, x, y): |
| 50 | self.x = x |
| 51 | self.y = y |
| 52 | |
| 53 | def __lt__(self, other: Point) -> bool: |
| 54 | return (self.x, self.y) < (other.x, other.y) |
nothing calls this directly
no outgoing calls
no test coverage detected