(self)
| 277 | self.is_trunk = True # nothing calls it |
| 278 | |
| 279 | def __repr__(self): |
| 280 | return f"<Node token={self.token} parent={self.parent}>" |
| 281 | |
| 282 | def __lt__(self, other): |
| 283 | return self.name() < other.name() |
nothing calls this directly
no outgoing calls
no test coverage detected