diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-09-29 15:57:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 15:57:36 +0100 |
commit | 2649d545a551dd126d73d34a6e3172916ea483e0 (patch) | |
tree | df36eb8949abbde4d8ba9e8448908328751bab1b /synapse/storage/databases | |
parent | Add support for running Complement against the local checkout (#8317) (diff) | |
download | synapse-2649d545a551dd126d73d34a6e3172916ea483e0.tar.xz |
Mypy fixes for `synapse.handlers.federation` (#8422)
For some reason, an apparently unrelated PR upset mypy about this module. Here are a number of little fixes.
Diffstat (limited to 'synapse/storage/databases')
-rw-r--r-- | synapse/storage/databases/state/store.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/databases/state/store.py b/synapse/storage/databases/state/store.py index 989f0cbc9d..0e31cc811a 100644 --- a/synapse/storage/databases/state/store.py +++ b/synapse/storage/databases/state/store.py @@ -24,7 +24,7 @@ from synapse.storage.databases.state.bg_updates import StateBackgroundUpdateStor from synapse.storage.state import StateFilter from synapse.storage.types import Cursor from synapse.storage.util.sequence import build_sequence_generator -from synapse.types import StateMap +from synapse.types import MutableStateMap, StateMap from synapse.util.caches.descriptors import cached from synapse.util.caches.dictionary_cache import DictionaryCache @@ -208,7 +208,7 @@ class StateGroupDataStore(StateBackgroundUpdateStore, SQLBaseStore): async def _get_state_for_groups( self, groups: Iterable[int], state_filter: StateFilter = StateFilter.all() - ) -> Dict[int, StateMap[str]]: + ) -> Dict[int, MutableStateMap[str]]: """Gets the state at each of a list of state groups, optionally filtering by type/state_key |