(self, label)
| 7 | class Node: |
| 8 | |
| 9 | def __init__(self, label): |
| 10 | self.label = label |
| 11 | self._parent = None |
| 12 | self._left = None |
| 13 | self._right = None |
| 14 | self.height = 0 |
| 15 | |
| 16 | @property |
| 17 | def right(self): |
nothing calls this directly
no outgoing calls
no test coverage detected