Peter Hausamann
Peter Hausamann
@alkatar21 you're right, my bad. Here's a modified example that also demonstrates that it works correctly without the context manager: root_logger = logging.getLogger() root_logger.setLevel(logging.DEBUG) stream_handler = logging.StreamHandler(sys.stderr) stream_handler.setLevel(logging.INFO) root_logger.addHandler(stream_handler) with...
It seems that this issue occurs when the notebook is not below the notebook path of the notebook server. This even happens when `c.NotebookApp.notebook_dir` is set in `jupyter_notebook_config.py`... on my...
Thanks for the response @bsekachev , I am aware of that. However, our workflow assumes that a video with a rotation record is being uploaded.
Thanks @tahamukhtar20 for the fix!
A simple fix is to add the `:nosignatures:` option to the `..autoapisummary::` directive in the *Functions* section [here](https://github.com/readthedocs/sphinx-autoapi/blob/master/autoapi/templates/python/module.rst).
I use it inside of a `KerasClassifier/KerasEstimator` wrapper in a scikit-learn pipeline. scikit-learn expects that it is able to set all parameters of the fit method in the constructor of...
This is an issue with ipywidgets ([#1845](https://github.com/jupyter-widgets/ipywidgets/issues/1845)). The only fix so far is to revert to ipywidgets 6.0.1
Fixed in ipywidgets 7.2.0 Update your ipywidgets package to the latest version if you have this problem.
I've run into this issue, which results `asyncSlot` callbacks being cancelled unexpectedly. My solution is to patch the `asyncSlot` function to use the workaround suggested by the [create_task docs](https://docs.python.org/3/library/asyncio-task.html#asyncio.create_task): ```python...