We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e85e9 commit 5655c2fCopy full SHA for 5655c2f
python/egglog/declarations.py
@@ -570,7 +570,7 @@ def _cached_hash(self) -> int:
570
return hash((self.callable, self.args, self.bound_tp_params))
571
572
def __eq__(self, other: object) -> bool:
573
- if not isinstance(other, egglog.declarations.CallDecl):
+ if not isinstance(other, CallDecl):
574
return False
575
return self.callable == other.callable and self.args == other.args and self.bound_tp_params == other.bound_tp_params
576
0 commit comments