diff options
| author | dherrada <33632497+dherrada@users.noreply.github.com> | 2020-05-15 18:17:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-15 18:17:23 -0400 |
| commit | e67d6756d1dbfe2e7b61b1fbfc2357c3f1f56639 (patch) | |
| tree | a30d1e6061c68149f2ad06a1d781863a415f6601 /conf.py | |
| parent | acf88d7c0089c732222740a26a1d73563d016a13 (diff) | |
| parent | 0d8bca92e208e705150097d26db6a5390dc9eb9b (diff) | |
Merge branch 'master' into extract-types
Diffstat (limited to 'conf.py')
| -rw-r--r-- | conf.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -71,11 +71,12 @@ extensions.append('autoapi.extension') autoapi_type = 'python' # Uncomment this if debugging autoapi -# autoapi_keep_files = True -autoapi_dirs = ['circuitpython-stubs'] +autoapi_keep_files = True +autoapi_dirs = [os.path.join('circuitpython-stubs', x) for x in os.listdir('circuitpython-stubs')] autoapi_add_toctree_entry = False autoapi_options = ['members', 'undoc-members', 'private-members', 'show-inheritance', 'special-members', 'show-module-summary'] autoapi_template_dir = 'docs/autoapi/templates' +autoapi_python_use_implicit_namespaces = True # The encoding of source files. #source_encoding = 'utf-8-sig' |
