Skip to content

Commit

Permalink
Exclude '__parameters__', '__abstractmethods__' from API
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Mar 29, 2024
1 parent 7e76c38 commit d1b4dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
'members': True,
'special-members': True,
'undoc-members': True,
'exclude-members': '__annotations__, __dict__,__weakref__,__module__,__hash__',
'exclude-members': '__annotations__, __dict__,__weakref__,__module__,__hash__,__parameters__,__abstractmethods__',
}
add_module_names = False
napoleon_numpy_docstring = True
Expand Down

0 comments on commit d1b4dd4

Please sign in to comment.