Skip to content

Commit 7aa8068

Browse files
committed
Don't include type annotations in the documentation
1 parent e2baceb commit 7aa8068

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"sphinx.ext.intersphinx",
3737
"sphinx.ext.napoleon",
3838
"sphinx.ext.viewcode",
39-
4039
"autoapi.extension",
4140
"sphinx_autodoc_typehints",
4241
"sphinx_copybutton",
@@ -169,7 +168,6 @@ def entire_domain(host):
169168
]
170169
autoapi_root = "api"
171170
autoapi_ignore = [
172-
"*/_[a-z]*.py",
173171
"*/__main__.py",
174172
"*/benchmarks/*",
175173
"*/cli.py",
@@ -179,8 +177,10 @@ def entire_domain(host):
179177
"members",
180178
"undoc-members",
181179
"show-module-summary",
182-
"imported-members",
183180
]
184181

185182
autoapi_type = "python"
186183
autoapi_dirs = [PACKAGE_SRC]
184+
185+
# Don't include type hints as they give too much issues
186+
autodoc_typehints = "none"

0 commit comments

Comments
 (0)