Skip to content

Commit

Permalink
Removed duplicated handling for ParamMethod in Dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 14, 2018
1 parent 8185554 commit 44262c0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions holoviews/util/__init__.py
Expand Up @@ -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
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 44262c0

Please sign in to comment.