Skip to content

Commit

Permalink
Update ipython module
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Sep 24, 2023
1 parent a2a8734 commit 0251036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions param/ipython.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import param

from param.depends import depends, register_display_accessor, resolve_ref
from param.reactive import reactive
from param.reactive import rx


# Whether to generate warnings when misformatted docstrings are found
Expand Down Expand Up @@ -364,7 +364,7 @@ def __init__(self, reactive):
self._reactive = reactive

def __call__(self):
if isinstance(self._reactive, reactive):
if isinstance(self._reactive, rx):
cb = self._reactive._callback
@depends(*self._reactive._params, watch=True)
def update_handle(*args, **kwargs):
Expand Down

0 comments on commit 0251036

Please sign in to comment.