1
0
Fork 0

Fix rgbkb/sol/rev2 build issues (#17601)

This commit is contained in:
Joel Challis 2022-07-08 22:48:48 +01:00 committed by GitHub
parent b0c3d61c17
commit 81d317aa87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 3 deletions

View file

@ -258,6 +258,9 @@ def _parse_led_config(file, matrix_cols, matrix_rows):
position_raw.append(_coerce_led_token(_type, value))
if section == 3 and bracket_count == 2:
flags.append(_coerce_led_token(_type, value))
elif _type in [Token.Comment.Preproc]:
# TODO: Promote to error
return None
# Slightly better intrim format
matrix = list(_get_chunks(matrix_raw, matrix_cols))