Skip to content

Commit fa6c271

Browse files
committed
fix comparison
1 parent c5d7a51 commit fa6c271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisgraph/execution_plan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __eq__(self, o: object) -> bool:
1212
if not isinstance(o, Operation):
1313
return False
1414

15-
if self.name != o.name or self.args != self.args or len(self.children) != len(o.children):
15+
if self.name != o.name or self.args != o.args or len(self.children) != len(o.children):
1616
return False
1717

1818
for i in range(len(self.children)):

0 commit comments

Comments
 (0)