Skip to content
Snippets Groups Projects
Commit 4d762ec4 authored by Daniel Bauer's avatar Daniel Bauer :speech_balloon:
Browse files

fix typo in CustomCodeNode.__eq__

parent 644d2ee7
Branches
Tags
No related merge requests found
......@@ -151,7 +151,7 @@ class CustomCodeNode(Node):
def undefined_symbols(self):
return self._symbols_read - self._symbols_defined
def __eq___(self, other):
def __eq__(self, other):
return self._code == other._code
def __hash__(self):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment