summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2021-09-15 09:54:13 -0400
committerGitHub <noreply@github.com>2021-09-15 09:54:13 -0400
commit3eba047d388fd0d798229a0779f343dbda8a2887 (patch)
tree991e2bdf96eec08a830ae5542f3368f656c0781a /synapse/util
parentAdd missing type hints to non-client REST servlets. (#10817) (diff)
downloadsynapse-3eba047d388fd0d798229a0779f343dbda8a2887.tar.xz
Add type hints to state database module. (#10823)
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/caches/dictionary_cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/util/caches/dictionary_cache.py b/synapse/util/caches/dictionary_cache.py
index ade088aae2..485ddb1893 100644
--- a/synapse/util/caches/dictionary_cache.py
+++ b/synapse/util/caches/dictionary_cache.py
@@ -130,7 +130,7 @@ class DictionaryCache(Generic[KT, DKT, DV]):
         sequence: int,
         key: KT,
         value: Dict[DKT, DV],
-        fetched_keys: Optional[Set[DKT]] = None,
+        fetched_keys: Optional[Iterable[DKT]] = None,
     ) -> None:
         """Updates the entry in the cache
 
@@ -155,7 +155,7 @@ class DictionaryCache(Generic[KT, DKT, DV]):
                 self._update_or_insert(key, value, fetched_keys)
 
     def _update_or_insert(
-        self, key: KT, value: Dict[DKT, DV], known_absent: Set[DKT]
+        self, key: KT, value: Dict[DKT, DV], known_absent: Iterable[DKT]
     ) -> None:
         # We pop and reinsert as we need to tell the cache the size may have
         # changed