Skip to content
Snippets Groups Projects
Commit 101ee3fd authored by Erik Johnston's avatar Erik Johnston
Browse files

Better variable name

parent df361d08
No related branches found
No related tags found
No related merge requests found
......@@ -385,12 +385,12 @@ class StateStore(SQLBaseStore):
if not missing_groups_and_types:
defer.returnValue({
k: {
key: ev
for key, ev in state.items()
if ev
group: {
type_tuple: event
for type_tuple, event in state.items()
if event
}
for k, state in results.items()
for group, state in results.items()
})
# Okay, so we have some missing_types, lets fetch them.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment