diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-18 16:28:13 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-18 16:28:13 +0100 |
commit | a82938416db87adde7c7e7965b93c2eecf86695a (patch) | |
tree | 1b34b8f981e1b4a4fa063222e901da171cb9854f /synapse/storage | |
parent | Rejig the code to make it nicer (diff) | |
download | synapse-a82938416db87adde7c7e7965b93c2eecf86695a.tar.xz |
Remove newline because vertical whitespace makes mjark sad
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/state.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index c831d8d389..c9110e6304 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -417,8 +417,7 @@ class StateStore(SQLBaseStore): # used for bookkeeping in the cache. for group, state_dict in results.items(): results[group] = { - key: event for key, event in state_dict.items() - if event + key: event for key, event in state_dict.items() if event } defer.returnValue(results) |