You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this appears to override the init=False declared for test_2, and causes SomeWidget.watch_test_2 to fire. This can be worked around by making the watch setup call like this:
Stemming from a question on Discord; consider this code:
when run, it correctly logs that
test_1
changed, and correctly doesn't log thattest_2
changed. Now, if we add awatch
ontest_2
:this appears to override the
init=False
declared fortest_2
, and causesSomeWidget.watch_test_2
to fire. This can be worked around by making thewatch
setup call like this:but it seems like an unintended consequence that the watch method (
SomeWidget.watch_test_2
) gets called without that.The text was updated successfully, but these errors were encountered: