Skip to content

Commit

Permalink
change invalid pin from error to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
skullydazed committed Jan 6, 2021
1 parent b749953 commit 68da9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def _extract_pins(pins):

for pin in pins:
if pin[0] not in 'ABCDEFGHIJK' or not pin[1].isdigit():
raise ValueError(f'Invalid pin: {pin}')
cli.log.warning(f'Nonstandard pin format: {pin}')

return pins

Expand Down

0 comments on commit 68da9cd

Please sign in to comment.