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 49e0c01 commit c0a1565Copy full SHA for c0a1565
python/egglog/declarations.py
@@ -575,8 +575,11 @@ def __eq__(self, other: object) -> bool:
575
return False
576
if hash(self) != hash(other):
577
578
- return self.callable == other.callable and self.args == other.args and self.bound_tp_params == other.bound_tp_params
579
-
+ return (
+ self.callable == other.callable
580
+ and self.args == other.args
581
+ and self.bound_tp_params == other.bound_tp_params
582
+ )
583
584
585
@dataclass(frozen=True)
0 commit comments