Skip to content

Commit c0a1565

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 49e0c01 commit c0a1565

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

python/egglog/declarations.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,8 +575,11 @@ def __eq__(self, other: object) -> bool:
575575
return False
576576
if hash(self) != hash(other):
577577
return False
578-
return self.callable == other.callable and self.args == other.args and self.bound_tp_params == other.bound_tp_params
579-
578+
return (
579+
self.callable == other.callable
580+
and self.args == other.args
581+
and self.bound_tp_params == other.bound_tp_params
582+
)
580583

581584

582585
@dataclass(frozen=True)

0 commit comments

Comments
 (0)