mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 15:03:50 +01:00
Remove newline because vertical whitespace makes mjark sad
This commit is contained in:
parent
0bfdaf1f4f
commit
a82938416d
1 changed files with 1 additions and 2 deletions
|
@ -417,8 +417,7 @@ class StateStore(SQLBaseStore):
|
||||||
# used for bookkeeping in the cache.
|
# used for bookkeeping in the cache.
|
||||||
for group, state_dict in results.items():
|
for group, state_dict in results.items():
|
||||||
results[group] = {
|
results[group] = {
|
||||||
key: event for key, event in state_dict.items()
|
key: event for key, event in state_dict.items() if event
|
||||||
if event
|
|
||||||
}
|
}
|
||||||
|
|
||||||
defer.returnValue(results)
|
defer.returnValue(results)
|
||||||
|
|
Loading…
Reference in a new issue