Skip to content
Open
Changes from all commits
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
3 changes: 2 additions & 1 deletion param/parameterized.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

if TYPE_CHECKING:
import logging
from .reactive import rx

from contextlib import contextmanager
CRITICAL = 50
Expand Down Expand Up @@ -1572,7 +1573,7 @@ def schema(
safe=safe, subset=subset)

@property
def rx(self):
def rx(self) -> 'rx':
"""
The reactive operations namespace.

Expand Down
Loading