(self, other: Line)
| 189 | return self.greater_than(other) |
| 190 | |
| 191 | def __lt__(self, other: Line) -> bool: |
| 192 | return other.greater_than(self) |
| 193 | |
| 194 | def same(self, other: Line) -> bool: |
| 195 | a, b, c = self.coefficients |
nothing calls this directly
no test coverage detected