mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-08 15:44:56 -04:00
Improve type annotations for the helper methods on a CachedFunction
. (#14685)
This commit is contained in:
parent
652d1669c5
commit
864c3f85b0
2 changed files with 4 additions and 3 deletions
|
@ -53,9 +53,9 @@ F = TypeVar("F", bound=Callable[..., Any])
|
|||
|
||||
|
||||
class CachedFunction(Generic[F]):
|
||||
invalidate: Any = None
|
||||
invalidate_all: Any = None
|
||||
prefill: Any = None
|
||||
invalidate: Callable[[Tuple[Any, ...]], None]
|
||||
invalidate_all: Callable[[], None]
|
||||
prefill: Callable[[Tuple[Any, ...], Any], None]
|
||||
cache: Any = None
|
||||
num_args: Any = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue