Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 20, 2024
1 parent 49e0c01 commit c0a1565
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions python/egglog/declarations.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,11 @@ def __eq__(self, other: object) -> bool:
return False
if hash(self) != hash(other):
return False
return self.callable == other.callable and self.args == other.args and self.bound_tp_params == other.bound_tp_params

return (
self.callable == other.callable
and self.args == other.args
and self.bound_tp_params == other.bound_tp_params
)


@dataclass(frozen=True)
Expand Down

0 comments on commit c0a1565

Please sign in to comment.