Skip to content

Commit

Permalink
Avoid use of deprecated autodoc_default_flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Peque committed Apr 5, 2019
1 parent 459852c commit 7398907
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@
'sphinx.ext.ifconfig'
]

autodoc_default_flags = ['members', 'undoc-members', 'show-inheritance']
autodoc_default_options = {
'members': None,
'undoc-members': None,
'show-inheritance': None,
}

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

0 comments on commit 7398907

Please sign in to comment.