remove duplicated device_types value

This commit is contained in:
Abeo Anthony, A 2020-05-07 19:59:09 +00:00
parent 6a5ce6ddb9
commit a457c2be7b

View File

@ -131,12 +131,6 @@ class Service(models.Model):
.order_by("-count")
)
device_types = (
sessions.values("device_type")
.annotate(count=models.Count("device_type"))
.order_by("-count")
)
avg_load_time = hits.aggregate(load_time__avg=models.Avg("load_time"))[
"load_time__avg"
]