Skip to content

Commit 60d9773

Browse files
committed
fix: fix ci
1 parent 8eba570 commit 60d9773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode_py/data_structures/graph_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def is_clone(self, other: GraphNode | None) -> bool:
5555
return False
5656

5757
# First check if structures are equal
58-
if not (self == other):
58+
if not (self != other):
5959
return False
6060

6161
# Then check all nodes are different objects

0 commit comments

Comments
 (0)