-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
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
Bug: Output gets hidden on stop_and_persist in Jupyter notebooks #59
Comments
@jungwinter Could you look into this as well? |
Sorry for late response. I checked this issue in python 2.7.13 and find this line is making the problem. After removing that line, final output seems to be resolved. Would you like to check this solution? I guess it caused by this change, but not sure. |
@jungwinter Yes, it seems to resolve the issue. I'm not sure if it breaks anything else. |
I'd love to check this out for hacktoberfest. @jungwinter thanks for the starting point. |
I looked into this a bit today. This commit caused the bug. The reason why is I don't want to simply revert that commit, because it seems like there was a good reason for wanting to clean up after execution. Maybe @manrajgrover you can expand on what issue that commit is fixing? I notice it replaced a previous callback to handle |
Output gets hidden on stop_and_persist in Jupyter notebooks - added output to self.output.outputs instead of reassignment to persist output when cell finishes running.
Description
Currently, in jupyter notebooks, the final
stop_and_persist
output is not persisted. I've opened an issue in ipywidget for understanding the issue a little better (jupyter-widgets/ipywidgets#2072).System settings
pip freeze
output: NAError
The output display is not persited on
stop_and_persist
call.Expected behaviour
The output should be persited on
stop_and_persist
call.Steps to recreate
People to notify
@jungwinter @manrajgrover
The text was updated successfully, but these errors were encountered: