(self, other)
| 461 | return f"<Edge {self.node0} -> {self.node1}" |
| 462 | |
| 463 | def __lt__(self, other): |
| 464 | if self.node0 == other.node0: |
| 465 | return self.node1 < other.node1 |
| 466 | return self.node0 < other.node0 |
| 467 | |
| 468 | def to_dot(self): |
| 469 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected