Browse Source

update autodoc settings. not sure if "inherited-members" should be set to true

Signed-off-by: Ivan Schaller <ivan@schaller.sh>
pull/1261/head
Ivan Schaller 6 months ago
parent
commit
84b88ec6f3
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      docs/conf.py

+ 5
- 4
docs/conf.py View File

@ -31,14 +31,15 @@ extensions = [
autodoc_default_options = {
"members": True,
"undoc-members": True,
"private-members": False,
"special-members": "__init__",
"show-inheritance": True,
"private-members": True,
"special-members": "__init__, __repr__",
# "inherited-members": True,
"exclude-members": "__weakref__",
"show-inheritance": True,
}
autodoc_typehints = "both"
autodoc_typehints_description_target = "all"
autodoc_member_order = "alphabetical"
autodoc_member_order = "bysource"
### extlinks ###


Loading…
Cancel
Save