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 28e6afc commit dc6c4eeCopy full SHA for dc6c4ee
tools/board_stubs/build_board_specific_stubs/board_stub_builder.py
@@ -17,7 +17,7 @@ def get_board_pins(pin_filename):
17
if line.strip()[0:2] == "//":
18
continue
19
20
- # (\s*) means any amount of whitespaces (no whitespaces allowed too)
+ # \s* means any amount of whitespaces (no whitespaces allowed too)
21
# related issue: https://github.com/adafruit/circuitpython/issues/9407
22
23
search = re.search(r"MP_ROM_QSTR\(MP_QSTR_(.*?)\),\s*MP_ROM_PTR", line)
0 commit comments