Skip to content

Commit

Permalink
Ensure that apply works on HoloMaps (#3596)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Apr 3, 2019
1 parent dcfbd6d commit c38ece9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/accessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def function(object, **kwargs):
method_name)
return method(*args, **kwargs)

applies = isinstance(self._obj, (ViewableElement, DynamicMap))
applies = isinstance(self._obj, (ViewableElement, HoloMap))
params = {p: val for p, val in kwargs.items()
if isinstance(val, param.Parameter)
and isinstance(val.owner, param.Parameterized)}
Expand Down

0 comments on commit c38ece9

Please sign in to comment.