From d908e48d61200cbacadbb0dcf8a8e50c309f8c10 Mon Sep 17 00:00:00 2001 From: John Bodley <4567245+john-bodley@users.noreply.github.com> Date: Sat, 11 Nov 2017 21:44:24 -0800 Subject: [PATCH] [slice] Removing deprecated argument (#3838) --- superset/models/core.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/superset/models/core.py b/superset/models/core.py index fdeea6b14..e067da4c2 100644 --- a/superset/models/core.py +++ b/superset/models/core.py @@ -229,12 +229,9 @@ class Slice(Model, AuditMixinNullable, ImportMixin): name = escape(self.slice_name) return Markup('{name}'.format(**locals())) - def get_viz(self, url_params_multidict=None): + def get_viz(self): """Creates :py:class:viz.BaseViz object from the url_params_multidict. - :param werkzeug.datastructures.MultiDict url_params_multidict: - Contains the visualization params, they override the self.params - stored in the database :return: object of the 'viz_type' type that is taken from the url_params_multidict or self.params. :rtype: :py:class:viz.BaseViz