diff --git a/src/graph.py b/src/graph.py index 02e3948..1a9f21d 100644 --- a/src/graph.py +++ b/src/graph.py @@ -32,7 +32,7 @@ def __len__(self): def __repr__(self): """Paths representation is sorted because set ordering is not guaranteed.""" return repr(self.seq) + \ - ', {' + ', '.join(str(i) for i in sorted(list(self.paths))) + '}' + ', {' + ', '.join(str(i) for i in list(self.paths)) + '}' def __eq__(self, other): if not isinstance(other, Node):