Skip to content

Commit

Permalink
change hashing algorithm of FuncWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
zhPavel committed Aug 18, 2024
1 parent 7d733d3 commit af17333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adaptix/_internal/retort/operating_retort.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __eq__(self, other):
return NotImplemented

def __hash__(self):
return 100
return hash(self._key)


CallableT = TypeVar("CallableT", bound=Callable)
Expand Down

0 comments on commit af17333

Please sign in to comment.