We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8be157f commit 229fe7dCopy full SHA for 229fe7d
sphinxcontrib/apidoc/__init__.py
@@ -24,7 +24,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
24
app.add_config_value('apidoc_module_dir', None, 'env', [str])
25
app.add_config_value('apidoc_output_dir', 'api', 'env', [str])
26
app.add_config_value('apidoc_template_dir', 'templates', 'env', [str])
27
- app.add_config_value('apidoc_excluded_paths', [], 'env', [[str]])
+ app.add_config_value('apidoc_excluded_paths', [], 'env', list[str])
28
app.add_config_value('apidoc_separate_modules', False, 'env', [bool])
29
app.add_config_value('apidoc_toc_file', None, 'env', [str, bool])
30
app.add_config_value('apidoc_module_first', False, 'env', [bool])
0 commit comments