shared_bindings_matrix: Use stubs, not shared-bindings
This fixes a problem where things that were in extmod/ could not be listed.
This commit is contained in:
parent
5422dd682c
commit
e121e267ad
|
@ -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()]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue