mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 13:23:24 -07:00
Fix dict comprehension bug
This commit is contained in:
parent
8e8a98b78b
commit
3fcf0d83cb
1 changed files with 1 additions and 1 deletions
|
@ -688,7 +688,7 @@ class PlexWatch(object):
|
||||||
|
|
||||||
for item in dataset:
|
for item in dataset:
|
||||||
key = item[group_by_key]
|
key = item[group_by_key]
|
||||||
values = {k: item[k] for k in sum_value_keys}
|
values = dict((k, item[k]) for k in sum_value_keys)
|
||||||
container[key].update(values)
|
container[key].update(values)
|
||||||
|
|
||||||
new_dataset = [
|
new_dataset = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue