Open
Description
I'm not thrilled with this diff:
def __eq__(self, that):
if not isinstance(that, type(self)):
return NotImplemented
- return (self.__slots__ == that.__slots__
- and all(item == iota for item, iota in zip(self, that)))
+ return self.__slots__ == that.__slots__ and all(
+ item == iota for item, iota in zip(self, that)
+ )
def __repr__(self):
Metadata
Metadata
Assignees
Labels
No labels