summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-08-18 16:28:13 +0100
committerErik Johnston <erik@matrix.org>2015-08-18 16:28:13 +0100
commita82938416db87adde7c7e7965b93c2eecf86695a (patch)
tree1b34b8f981e1b4a4fa063222e901da171cb9854f /synapse
parentRejig the code to make it nicer (diff)
downloadsynapse-a82938416db87adde7c7e7965b93c2eecf86695a.tar.xz
Remove newline because vertical whitespace makes mjark sad
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/state.py3
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)