Skip to content

Commit

Permalink
Ignore a few more members when generating the documentation of abstra…
Browse files Browse the repository at this point in the history
…ct classes
  • Loading branch information
francesco-ballarin committed Jan 2, 2024
1 parent 06fd43f commit ceaa3c8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@

# Extensions configuration
autodoc_default_options = {
"exclude-members": "__dict__,__init__,__module__,__weakref__",
"exclude-members": ",".join([
"__abstractmethods__", "__dict__", "__init__", "__module__", "__orig_bases__",
"__parameters__", "__weakref__"
]),
"imported-members": True,
"members": True,
"show-inheritance": True,
Expand Down

0 comments on commit ceaa3c8

Please sign in to comment.