From e21e6a7600fe23c34c5a64a3220cac773163e58c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20R=C3=B6tgers?= Date: Thu, 25 Oct 2018 21:03:33 +0200 Subject: [PATCH] add get_data method to IFrameViz (#6185) --- superset/viz.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/superset/viz.py b/superset/viz.py index 9467726324eba..bae48937b4484 100644 --- a/superset/viz.py +++ b/superset/viz.py @@ -1823,6 +1823,9 @@ def query_obj(self): def get_df(self, query_obj=None): return None + def get_data(self, df): + return {} + class ParallelCoordinatesViz(BaseViz):