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()