We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b43a0 commit a5af3b8Copy full SHA for a5af3b8
src/poetry/core/packages/dependency.py
@@ -622,9 +622,6 @@ def __eq__(self, other: Any) -> bool:
622
623
return super().__eq__(other) and self._constraint == other.constraint
624
625
- def __ne__(self, other: Any) -> bool:
626
- return not self.__eq__(other)
627
-
628
def __hash__(self) -> int:
629
# don't include _constraint in hash because it is mutable!
630
return super().__hash__()
0 commit comments