Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache reactive parameters and root #850

Merged
merged 4 commits into from
Sep 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix where implementation
  • Loading branch information
philippjfr committed Sep 25, 2023
commit 8bc758423392164669c84735d89089183148d938
4 changes: 2 additions & 2 deletions param/reactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ def trigger_y(*args):
trigger.param.trigger('value')
bind(trigger_y, *yrefs, watch=True)

def ternary(condition, event):
def ternary(condition, _):
return resolve_value(x) if condition else resolve_value(y)
return self.pipe(ternary, trigger.param.value)
return bind(ternary, self._reactive, trigger.param.value)

# Operations to get the output and set the input of an expression

Expand Down