add get_data method to IFrameViz (#6185)

This commit is contained in:
Mike Rötgers 2018-10-25 21:03:33 +02:00 committed by Maxime Beauchemin
parent e7e8e9d00d
commit e21e6a7600
1 changed files with 3 additions and 0 deletions

View File

@ -1823,6 +1823,9 @@ class IFrameViz(BaseViz):
def get_df(self, query_obj=None):
return None
def get_data(self, df):
return {}
class ParallelCoordinatesViz(BaseViz):