Skip to content

Commit a88195d

Browse files
committed
update reference to keycomparable magic value
1 parent fed2322 commit a88195d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymathics/graph/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from mathics.core.element import BaseElement
2222
from mathics.core.evaluation import Evaluation
2323
from mathics.core.expression import Expression
24-
from mathics.core.keycomparable import IMAGE_EXPRESSION_SORT_KEY
24+
from mathics.core.keycomparable import IMAGE_EXPRESSION_ELT_ORDER
2525
from mathics.core.pattern import pattern_objects
2626
from mathics.core.symbols import Symbol, SymbolList, SymbolTrue
2727
from mathics.core.systemsymbols import (
@@ -43,7 +43,7 @@
4343
SymbolUndirectedEdge,
4444
)
4545

46-
GRAPH_EXPRESSION_SORT_KEY = IMAGE_EXPRESSION_SORT_KEY + 1
46+
GRAPH_EXPRESSION_SORT_KEY = IMAGE_EXPRESSION_ELT_ORDER + 1
4747

4848
WL_MARKER_TO_NETWORKX = {
4949
"Circle": "o",

0 commit comments

Comments
 (0)