From 44262c0e6fd0f8d14015ed1c5301e4087166a021 Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Fri, 14 Dec 2018 14:37:53 +0000 Subject: [PATCH] Removed duplicated handling for ParamMethod in Dynamic --- holoviews/util/__init__.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/holoviews/util/__init__.py b/holoviews/util/__init__.py index 6deb6d9b35..aea875a0d7 100644 --- a/holoviews/util/__init__.py +++ b/holoviews/util/__init__.py @@ -9,7 +9,7 @@ from ..core.operation import OperationCallable from ..core.spaces import Callable from ..core import util -from ..streams import Stream, ParamMethod +from ..streams import Stream from .settings import OutputSettings, list_formats, list_backends Store.output_settings = OutputSettings @@ -720,12 +720,6 @@ def _get_streams(self, map_obj, watch=True): added to the list. """ streams = [] - - # If callback is a parameterized method and watch is disabled add as stream - param_watch_support = util.param_version >= '1.8.0' - if util.is_param_method(self.p.operation) and param_watch_support: - streams.append(ParamMethod(self.p.operation)) - for stream in self.p.streams: if inspect.isclass(stream) and issubclass(stream, Stream): stream = stream()