Browse Source

Revert "change invalid pin from error to warning"

This reverts commit 68da9cd196.
pull/11473/head
Zach White 3 years ago
committed by Zach White
parent
commit
e2e793c1c3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/python/qmk/info.py

+ 1
- 1
lib/python/qmk/info.py View File

@ -344,7 +344,7 @@ def _extract_pins(pins):
for pin in pins:
if pin[0] not in 'ABCDEFGHIJK' or not pin[1].isdigit():
cli.log.warning(f'Nonstandard pin format: {pin}')
raise ValueError(f'Invalid pin: {pin}')
return pins


Loading…
Cancel
Save