Improve type annotations for the helper methods on a `CachedFunction`. (#14685)
parent
652d1669c5
commit
864c3f85b0
|
@ -0,0 +1 @@
|
||||||
|
Improve type annotations for the helper methods on a `CachedFunction`.
|
|
@ -53,9 +53,9 @@ F = TypeVar("F", bound=Callable[..., Any])
|
||||||
|
|
||||||
|
|
||||||
class CachedFunction(Generic[F]):
|
class CachedFunction(Generic[F]):
|
||||||
invalidate: Any = None
|
invalidate: Callable[[Tuple[Any, ...]], None]
|
||||||
invalidate_all: Any = None
|
invalidate_all: Callable[[], None]
|
||||||
prefill: Any = None
|
prefill: Callable[[Tuple[Any, ...], Any], None]
|
||||||
cache: Any = None
|
cache: Any = None
|
||||||
num_args: Any = None
|
num_args: Any = None
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue