Skip to content

Commit 5655c2f

Browse files
authored
Copied wrong line
1 parent 52e85e9 commit 5655c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/egglog/declarations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def _cached_hash(self) -> int:
570570
return hash((self.callable, self.args, self.bound_tp_params))
571571

572572
def __eq__(self, other: object) -> bool:
573-
if not isinstance(other, egglog.declarations.CallDecl):
573+
if not isinstance(other, CallDecl):
574574
return False
575575
return self.callable == other.callable and self.args == other.args and self.bound_tp_params == other.bound_tp_params
576576

0 commit comments

Comments
 (0)