Skip to content

Commit

Permalink
Remove extraneous type parameter of keyed_memoize_in
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Nov 28, 2024
1 parent c2a3820 commit b883cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ def new_inner(*args: P.args, **kwargs: P.kwargs) -> R:
return new_inner


class keyed_memoize_in(Generic[P, R]): # noqa: N801
class keyed_memoize_in(Generic[P]): # noqa: N801
"""Like :class:`memoize_in`, but additionally uses a function *key* to
compute the key under which the function result is memoized.
Expand Down

0 comments on commit b883cad

Please sign in to comment.