summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-08-10 10:05:30 +0100
committerErik Johnston <erik@matrix.org>2015-08-10 10:05:30 +0100
commit5119e416e855e1c5d78e8bd711bcbac2e15ee5f6 (patch)
tree82c5e156bbf581c413e7c02d8889b4e41f1eaad2 /synapse/storage
parentMerge branch 'erikj/cache_varargs_interface' of github.com:matrix-org/synapse... (diff)
downloadsynapse-5119e416e855e1c5d78e8bd711bcbac2e15ee5f6.tar.xz
Line length
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/state.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py

index 478b382867..a193649852 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py
@@ -323,7 +323,8 @@ class StateStore(SQLBaseStore): desc="_get_state_group_for_event", ) - @cachedList(cache=_get_state_group_for_event.cache, list_name="event_ids", num_args=2) + @cachedList(cache=_get_state_group_for_event.cache, list_name="event_ids", + num_args=2) def _get_state_group_for_events(self, room_id, event_ids): def f(txn): results = {}