From: Scott Baker Date: Tue, 29 Apr 2014 06:30:52 +0000 (-0700) Subject: fix groupBy postprocess was not removing percent X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=3a3b4df685fe4be4532835c66cb6673c2e4867b3;p=plstackapi.git fix groupBy postprocess was not removing percent --- diff --git a/planetstack/hpc_wizard/bigquery_analytics.py b/planetstack/hpc_wizard/bigquery_analytics.py index dafb55c..4e375df 100644 --- a/planetstack/hpc_wizard/bigquery_analytics.py +++ b/planetstack/hpc_wizard/bigquery_analytics.py @@ -204,6 +204,7 @@ class BigQueryAnalytics: avg = [x.replace("%","") for x in avg] computed = [x.replace("%","") for x in computed] maxi = [x.replace("%","") for x in maxi] + groupBy = [x.replace("%","") for x in groupBy] for (k,v) in filter.items(): rows = self.filter_results(rows, k, v)