Browse Source

Fix parsing/validation for 21939 (#22148)

pull/22145/head
Joel Challis 7 months ago
committed by GitHub
parent
commit
4e86dca49d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions
  1. +2
    -2
      data/schemas/keyboard.jsonschema
  2. +2
    -0
      lib/python/qmk/info.py

+ 2
- 2
data/schemas/keyboard.jsonschema View File

@ -404,7 +404,7 @@
"speed_steps": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"led_flush_limit": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"led_process_limit": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"react_on_keyup": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"react_on_keyup": {"type": "boolean"},
"sleep": {"type": "boolean"},
"split_count": {
"type": "array",
@ -460,7 +460,7 @@
"speed_steps": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"led_flush_limit": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"led_process_limit": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"react_on_keyup": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"react_on_keyup": {"type": "boolean"},
"sleep": {"type": "boolean"},
"split_count": {
"type": "array",


+ 2
- 0
lib/python/qmk/info.py View File

@ -520,6 +520,8 @@ def _config_to_json(key_type, config_value):
return list(map(str.strip, config_value.split(',')))
elif key_type == 'bool':
if isinstance(config_value, bool):
return config_value
return config_value in true_values
elif key_type == 'hex':


Loading…
Cancel
Save