MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / __lt__

Method __lt__

code2flow/model.py:463–466  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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 ''&#x27;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected