Skip to content

Commit

Permalink
Update to compatibility with latest param.rx API
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 3, 2023
1 parent 44f9317 commit 2dc79dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/spaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def __call__(self, *args, **kwargs):
kwarg_hash = kwargs.pop('_memoization_hash_', ())
(self.args, self.kwargs) = (args, kwargs)
if hasattr(self.callable, 'rx'):
return self.callable.rx.resolve()
return self.callable.rx.value
if not args and not kwargs and not any(kwarg_hash): return self.callable()
inputs = [i for i in self.inputs if isinstance(i, DynamicMap)]
streams = []
Expand Down

0 comments on commit 2dc79dd

Please sign in to comment.