We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our custom widgets have a _plopp_observe method instead of observe because inheriting from VBox causes errors when overriding the observe method (see e.g. https://github.com/scipp/plopp/blob/main/src/plopp/widgets/slice.py#L73)
_plopp_observe
observe
VBox
However, it is possible to work around this by also inheriting from ValueWidget. See jupyter-widgets/ipywidgets#2839 (comment)
ValueWidget
This would make our implementation cleaner.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Our custom widgets have a
_plopp_observe
method instead ofobserve
because inheriting fromVBox
causes errors when overriding theobserve
method (see e.g. https://github.com/scipp/plopp/blob/main/src/plopp/widgets/slice.py#L73)However, it is possible to work around this by also inheriting from
ValueWidget
. See jupyter-widgets/ipywidgets#2839 (comment)This would make our implementation cleaner.
The text was updated successfully, but these errors were encountered: