diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-08-26 11:28:39 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-08-26 11:29:59 -0500 |
| commit | e121e267adacf69809b78fdafc0209ad9a824266 (patch) | |
| tree | 19ce4f95972225ce945b576b5b4daad3d7d34316 /docs | |
| parent | 5422dd682ca107ae27c57c7d3fa240baa354bc87 (diff) | |
shared_bindings_matrix: Use stubs, not shared-bindings
This fixes a problem where things that were in extmod/ could not
be listed.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/shared_bindings_matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/shared_bindings_matrix.py b/docs/shared_bindings_matrix.py index 3523b8ec6..e81ae188c 100644 --- a/docs/shared_bindings_matrix.py +++ b/docs/shared_bindings_matrix.py @@ -43,7 +43,7 @@ def get_circuitpython_root_dir(): def get_shared_bindings(): """ Get a list of modules in shared-bindings based on folder names """ - shared_bindings_dir = get_circuitpython_root_dir() / "shared-bindings" + shared_bindings_dir = get_circuitpython_root_dir() / "circuitpython-stubs" return [item.name for item in shared_bindings_dir.iterdir()] |
