Skip to content

Commit

Permalink
Use explicit import
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Sep 24, 2023
1 parent 28799b1 commit d98bb5e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doc/user_guide/Reactive_Expressions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@
"metadata": {},
"outputs": [],
"source": [
"param.rx(1).rx.bool()"
"rx(1).rx.bool()"
]
},
{
Expand All @@ -645,7 +645,7 @@
"metadata": {},
"outputs": [],
"source": [
"param.rx(2).rx.in_([1, 2, 3])"
"rx(2).rx.in_([1, 2, 3])"
]
},
{
Expand All @@ -665,7 +665,7 @@
"metadata": {},
"outputs": [],
"source": [
"param.rx(None).rx.is_(None)"
"rx(None).rx.is_(None)"
]
},
{
Expand All @@ -685,7 +685,7 @@
"metadata": {},
"outputs": [],
"source": [
"param.rx(None).rx.is_not(None)"
"rx(None).rx.is_not(None)"
]
},
{
Expand All @@ -705,7 +705,7 @@
"metadata": {},
"outputs": [],
"source": [
"param.rx([1, 2, 3]).rx.len()"
"rx([1, 2, 3]).rx.len()"
]
},
{
Expand All @@ -725,7 +725,7 @@
"metadata": {},
"outputs": [],
"source": [
"param.rx(1).rx.pipe(add, 2)"
"rx(1).rx.pipe(add, 2)"
]
},
{
Expand All @@ -735,7 +735,7 @@
"metadata": {},
"outputs": [],
"source": [
"param.rx(8).rx.pipe(str)"
"rx(8).rx.pipe(str)"
]
},
{
Expand Down Expand Up @@ -855,7 +855,7 @@
"metadata": {},
"outputs": [],
"source": [
"condition = param.rx(True)"
"condition = rx(True)"
]
},
{
Expand Down

0 comments on commit d98bb5e

Please sign in to comment.