Fixed group by

This commit is contained in:
Sven Heidemann 2022-12-11 08:58:55 +01:00
parent 95d8df5bea
commit 85f75b4677

View File

@ -221,7 +221,7 @@ class QueryableABC(Sequence):
for v in self:
value = _func(v)
if v not in groups:
if value not in groups:
groups[value] = []
groups[value].append(v)