Skip to content

Commit

Permalink
👹 Feed the hobgoblins (delint).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 13, 2024
1 parent 6cf2bd7 commit 1a944fa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions zipp/_functools.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ def wrapper(self, *args, **kwargs):

def method_cache(
method: CallableT,
cache_wrapper: Callable[
[CallableT], CallableT
] = functools.lru_cache(), # type: ignore[assignment]
cache_wrapper: Callable[[CallableT], CallableT] = functools.lru_cache(), # type: ignore[assignment]
) -> CallableT:
"""
Wrap lru_cache to support storing the cache data in the object instances.
Expand Down

0 comments on commit 1a944fa

Please sign in to comment.