From 2b01340bb61a928f29d33f9e1cb5b74c8093b94d Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Tue, 12 Jan 2016 09:34:17 -0800 Subject: [PATCH] Allowing TableViz to show time granularity --- panoramix/viz.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/panoramix/viz.py b/panoramix/viz.py index 2eee9f7f6aa42..f5552d4ad3754 100644 --- a/panoramix/viz.py +++ b/panoramix/viz.py @@ -305,8 +305,6 @@ def query_obj(self): if fd.get('all_columns'): d['columns'] = fd.get('all_columns') d['groupby'] = [] - d['is_timeseries'] = False - d['timeseries_limit'] = None return d def get_df(self): @@ -371,8 +369,6 @@ def query_obj(self): raise Exception("groupby and columns can't overlap") d['groupby'] = list(set(groupby) | set(columns)) - d['is_timeseries'] = False - d['timeseries_limit'] = None return d def get_df(self):