diff options
author | Mathieu Velten <mathieuv@matrix.org> | 2022-09-21 15:32:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-21 15:32:01 +0200 |
commit | 6bd8763804dc0987c7ecd37bcb5ebff465fffa29 (patch) | |
tree | c779ddd00a44601efda0a2d940a7e5d742e04871 /scripts-dev | |
parent | Correct documentation for map_user_attributes of OpenID Mapping Providers (#1... (diff) | |
download | synapse-6bd8763804dc0987c7ecd37bcb5ebff465fffa29.tar.xz |
Add cache invalidation across workers to module API (#13667)
Signed-off-by: Mathieu Velten <mathieuv@matrix.org>
Diffstat (limited to 'scripts-dev')
-rw-r--r-- | scripts-dev/mypy_synapse_plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts-dev/mypy_synapse_plugin.py b/scripts-dev/mypy_synapse_plugin.py index d08517a953..2c377533c0 100644 --- a/scripts-dev/mypy_synapse_plugin.py +++ b/scripts-dev/mypy_synapse_plugin.py @@ -29,7 +29,7 @@ class SynapsePlugin(Plugin): self, fullname: str ) -> Optional[Callable[[MethodSigContext], CallableType]]: if fullname.startswith( - "synapse.util.caches.descriptors._CachedFunction.__call__" + "synapse.util.caches.descriptors.CachedFunction.__call__" ) or fullname.startswith( "synapse.util.caches.descriptors._LruCachedFunction.__call__" ): @@ -38,7 +38,7 @@ class SynapsePlugin(Plugin): def cached_function_method_signature(ctx: MethodSigContext) -> CallableType: - """Fixes the `_CachedFunction.__call__` signature to be correct. + """Fixes the `CachedFunction.__call__` signature to be correct. It already has *almost* the correct signature, except: |