Skip to content

Commit

Permalink
adding __init__() to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Lundquist authored and Eric Lundquist committed Jun 15, 2020
1 parent 2de4835 commit 70c9672
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@
'sphinx_rtd_theme'
]

# add autodoc default options
autodoc_default_options = {
'members': True,
'member-order': 'bysource',
'special-members': '__init__',
'undoc-members': True,
'exclude-members': '__weakref__'
}

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down
1 change: 1 addition & 0 deletions docs/source/rankfm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ RankFM

.. autoclass:: rankfm.rankfm.RankFM
:members:
:undoc-members:
:inherited-members:

0 comments on commit 70c9672

Please sign in to comment.