Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
remove deprecated parameter (notebook)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed May 21, 2017
1 parent 0e0c415 commit ab46fd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyquickhelper/ipythonhelper/notebook_helper.py
Expand Up @@ -191,7 +191,7 @@ def get_notebook_kernel(kernel_name, kernel_spec_manager=None):

def install_notebook_extension(path=None, overwrite=False, symlink=False,
user=False, prefix=None, nbextensions_dir=None,
destination=None, verbose=1):
destination=None):
"""
install notebook extensions,
see `install_nbextension <https://ipython.org/ipython-doc/dev/api/generated/IPython.html.nbextensions.html#IPython.html.nbextensions.install_nbextension>`_
Expand All @@ -215,7 +215,7 @@ def install_notebook_extension(path=None, overwrite=False, symlink=False,
from notebook.nbextensions import install_nbextension
install_nbextension(path=path, overwrite=overwrite, symlink=symlink,
user=user, prefix=prefix, nbextensions_dir=nbextensions_dir,
destination=destination, verbose=verbose)
destination=destination)

out = sys.stdout.getvalue()
err = sys.stderr.getvalue()
Expand Down

0 comments on commit ab46fd8

Please sign in to comment.