Skip to content

Commit

Permalink
clean up docs
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Apr 9, 2022
1 parent 4479e34 commit 2be75c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/environment.yml
Expand Up @@ -2,7 +2,7 @@ name: nbconvert_docs
channels:
- conda-forge
dependencies:
- python==3.7
- python==3.9
- pandoc
- nbformat
- jupyter_client
Expand Down
2 changes: 1 addition & 1 deletion nbconvert/exporters/base.py
Expand Up @@ -45,7 +45,7 @@ def export(exporter, nb, **kw):
method initializes its own instance of the class, it is ASSUMED that
the class type provided exposes a constructor (``__init__``) with the same
signature as the base Exporter class.
nb : `nbformat.NotebookNode`
nb : :class:`~nbformat.NotebookNode`
The notebook to export.
config : config (optional, keyword arg)
User configuration instance.
Expand Down
2 changes: 1 addition & 1 deletion nbconvert/exporters/exporter.py
Expand Up @@ -127,7 +127,7 @@ def from_notebook_node(self, nb, resources=None, **kw):
Parameters
----------
nb : `nbformat.NotebookNode`
nb : :class:`~nbformat.NotebookNode`
Notebook node (dict-like with attr-access)
resources : dict
Additional resources that can be accessed read/write by
Expand Down
2 changes: 1 addition & 1 deletion nbconvert/exporters/templateexporter.py
Expand Up @@ -375,7 +375,7 @@ def from_notebook_node(self, nb, resources=None, **kw):
Parameters
----------
nb : `nbformat.NotebookNode`
nb : :class:`~nbformat.NotebookNode`
Notebook node
resources : dict
Additional resources that can be accessed read/write by
Expand Down

0 comments on commit 2be75c5

Please sign in to comment.