(self, other: object)
| 30 | return self.key == other |
| 31 | |
| 32 | def __lt__(self, other: object) -> bool: |
| 33 | if isinstance(other, Node): |
| 34 | return self.key < other.key |
| 35 | return self.key < other # type: ignore[operator] |
| 36 | |
| 37 | def __hash__(self) -> int: |
| 38 | return hash(self.key) |
nothing calls this directly
no outgoing calls
no test coverage detected