Skip to content

Commit

Permalink
sphinx.ext.napoleon
Browse files Browse the repository at this point in the history
  • Loading branch information
statefb committed Jul 9, 2019
1 parent 11ae4fa commit 1e53640
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
# ones.
extensions = [
"sphinx.ext.autodoc",
'sphinx.ext.viewcode',
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
4 changes: 3 additions & 1 deletion docs/modules/result.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.. module:: dtwalign.result

======
Result
======

.. automodule:: dtwalign.result
.. autoclass:: DtwResult
:members:

2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Firstly, let's generate toy data for this tutorial.
.. image:: img/tutorial/toy_data.png

Then run :func:`~dtwalign.dtw` method which returns :func:`~dtwalign.result.DtwResult` object.
Then run :func:`dtwalign.dtw` method which returns :func:`~dtwalign.result.DtwResult` object.

.. code-block:: python
Expand Down

0 comments on commit 1e53640

Please sign in to comment.