diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-09 13:34:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-09 13:34:14 -0800 |
commit | 962bc8d9dd413690dbeadeaac971a5389697210f (patch) | |
tree | 02e7c5ebe87f466103901d72740fbf25c9d19a30 /lib/python/qmk/constants.py | |
parent | c550047ba68bd633d35b10d545ff240cf1fc9786 (diff) |
Use the schema to eliminate custom code (#11108)
* use the schema to eliminate custom code
* Update docs/reference_info_json.md
Co-authored-by: Ryan <fauxpark@gmail.com>
* make flake8 happy
* bugfix
* do not overwrite make vars from json
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'lib/python/qmk/constants.py')
-rw-r--r-- | lib/python/qmk/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/constants.py b/lib/python/qmk/constants.py index 675832c506..6a643070fd 100644 --- a/lib/python/qmk/constants.py +++ b/lib/python/qmk/constants.py @@ -26,5 +26,5 @@ ROW_LETTERS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnop' LED_INDICATORS = { 'caps_lock': 'LED_CAPS_LOCK_PIN', 'num_lock': 'LED_NUM_LOCK_PIN', - 'scrol_lock': 'LED_SCROLL_LOCK_PIN' + 'scrol_lock': 'LED_SCROLL_LOCK_PIN', } |