Skip to content

Commit

Permalink
Documentation: Fix readthedocs builds by using None instead of True i…
Browse files Browse the repository at this point in the history
…n autodoc_default_options.
  • Loading branch information
eseifert committed Dec 5, 2019
1 parent 855733d commit 30d205f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
'sphinx.ext.viewcode',
]
autodoc_default_options = {
'members': True,
'inherited-members': True,
'show-inheritance': True,
'members': None,
'inherited-members': None,
'show-inheritance': None,
}

# Add any paths that contain templates here, relative to this directory.
Expand Down

0 comments on commit 30d205f

Please sign in to comment.