We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d8327 commit 2f41bc4Copy full SHA for 2f41bc4
1 file changed
gnocchi/rest/aggregates/operations.py
@@ -50,7 +50,7 @@ def _inner_rated_agg(values, axis):
50
51
# these operations here are defined in
52
# 'gnocchi.carbonara.GroupedTimeSeries' as class methods.
53
-RESAMPLE_AVAILABLE_AGG_MAP = [k for k in AGG_MAP.keys() if k not in 'var'] + [
+RESAMPLE_AVAILABLE_AGG_MAP = [k for k in AGG_MAP.keys() if k != 'var'] + [
54
'last', 'first'] + [str(i + 1) + 'pct' for i in range(99)]
55
56
0 commit comments