Skip to content

Commit

Permalink
PR #64 - ignore :py:obj:function from sphinx warnings, it's not corre…
Browse files Browse the repository at this point in the history
…ctly documented upstream
  • Loading branch information
jantman committed Sep 30, 2015
1 parent 797ab91 commit 108781a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,10 @@
autoclass_content = 'init'
autodoc_default_flags = ['members', 'undoc-members', 'private-members', 'special-members', 'show-inheritance']

nitpick_ignore = [('py:class', 'ABCMeta')]
nitpick_ignore = [
('py:class', 'ABCMeta'),
('py:obj', 'function')
]

# exclude module docstrings - see http://stackoverflow.com/a/18031024/211734
def remove_module_docstring(app, what, name, obj, options, lines):
Expand Down

0 comments on commit 108781a

Please sign in to comment.