We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43045cc commit c81821fCopy full SHA for c81821f
shiny/reactive.py
@@ -60,7 +60,9 @@ def get(self) -> T:
60
61
def set(self, value: T) -> bool:
62
if self._read_only:
63
- raise RuntimeError("Can't set read-only reactive.Value")
+ raise RuntimeError(
64
+ "Can't set read-only reactive.Value. If you are trying to set an input value, use `update_xxx()` instead."
65
+ )
66
return self._set(value)
67
68
# The ._set() method allows setting read-only Value objects. This is used when the
0 commit comments