mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-22 23:49:22 -05:00
Better variable name
This commit is contained in:
parent
df361d08f7
commit
101ee3fd00
@ -385,12 +385,12 @@ class StateStore(SQLBaseStore):
|
|||||||
|
|
||||||
if not missing_groups_and_types:
|
if not missing_groups_and_types:
|
||||||
defer.returnValue({
|
defer.returnValue({
|
||||||
k: {
|
group: {
|
||||||
key: ev
|
type_tuple: event
|
||||||
for key, ev in state.items()
|
for type_tuple, event in state.items()
|
||||||
if ev
|
if event
|
||||||
}
|
}
|
||||||
for k, state in results.items()
|
for group, state in results.items()
|
||||||
})
|
})
|
||||||
|
|
||||||
# Okay, so we have some missing_types, lets fetch them.
|
# Okay, so we have some missing_types, lets fetch them.
|
||||||
|
Loading…
Reference in New Issue
Block a user