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 71e6eca commit 4b0a6e3Copy full SHA for 4b0a6e3
tools/board_stubs/circuitpython_setboard/__init__.py
@@ -15,8 +15,8 @@ def set_board():
15
chosen_board = sys.argv[1]
16
print(f"setting board: {chosen_board}")
17
18
- board_stubs_file = resources.files('board-stubs').joinpath("__init__.pyi")
19
- board_definitions_path = resources.files('board_definitions').joinpath(chosen_board)
+ board_stubs_file = resources.files("board-stubs").joinpath("__init__.pyi")
+ board_definitions_path = resources.files("board_definitions").joinpath(chosen_board)
20
board_definitions_file = board_definitions_path.joinpath("__init__.pyi")
21
22
if not board_definitions_file.is_file():
0 commit comments