We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2baceb commit 7aa8068Copy full SHA for 7aa8068
docs/conf.py
@@ -36,7 +36,6 @@
36
"sphinx.ext.intersphinx",
37
"sphinx.ext.napoleon",
38
"sphinx.ext.viewcode",
39
-
40
"autoapi.extension",
41
"sphinx_autodoc_typehints",
42
"sphinx_copybutton",
@@ -169,7 +168,6 @@ def entire_domain(host):
169
168
]
170
autoapi_root = "api"
171
autoapi_ignore = [
172
- "*/_[a-z]*.py",
173
"*/__main__.py",
174
"*/benchmarks/*",
175
"*/cli.py",
@@ -179,8 +177,10 @@ def entire_domain(host):
179
177
"members",
180
178
"undoc-members",
181
"show-module-summary",
182
- "imported-members",
183
184
185
autoapi_type = "python"
186
autoapi_dirs = [PACKAGE_SRC]
+
+# Don't include type hints as they give too much issues
+autodoc_typehints = "none"
0 commit comments