Skip to content

Commit

Permalink
revert change equality operator Domain
Browse files Browse the repository at this point in the history
  • Loading branch information
mpvanderschelling committed Nov 21, 2023
1 parent b7f8dbb commit 9d39c9c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/f3dasm/_src/design/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ def __eq__(self, other: Domain) -> bool:
return TypeError(f"Cannot compare Domain with \
{type(other.__name__)}")
return (
self.space == other.space and self.
output_space == other.output_space)
self.space == other.space)

def items(self) -> Iterator[_Parameter]:
"""Return an iterator over the items of the parameters"""
Expand Down

0 comments on commit 9d39c9c

Please sign in to comment.