From d1b4dd40b728400adc79c92c905d829d89570ce8 Mon Sep 17 00:00:00 2001 From: Anatoly Myachev Date: Thu, 28 Mar 2024 15:31:31 +0100 Subject: [PATCH] Exclude '__parameters__', '__abstractmethods__' from API Signed-off-by: Anatoly Myachev --- spec/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/conf.py b/spec/conf.py index a89cfee5..9ad82531 100644 --- a/spec/conf.py +++ b/spec/conf.py @@ -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