summaryrefslogtreecommitdiff
path: root/lib/python/qmk/keycodes.py
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-02-22 22:50:09 +0000
committerGitHub <noreply@github.com>2023-02-23 09:50:09 +1100
commit9f2cd9119f18deb824ef7840c69f97c635b485cd (patch)
tree1d4a3dbf4f5584cc2ada10bee7ff5857e3b916d1 /lib/python/qmk/keycodes.py
parent961f0b7b2de54f988daf4ce7b791f91a33e55612 (diff)
Reallocate user/kb keycode ranges (#19907)
Diffstat (limited to 'lib/python/qmk/keycodes.py')
-rw-r--r--lib/python/qmk/keycodes.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/keycodes.py b/lib/python/qmk/keycodes.py
index d2f2492829..966930547c 100644
--- a/lib/python/qmk/keycodes.py
+++ b/lib/python/qmk/keycodes.py
@@ -90,6 +90,7 @@ def load_spec(version, lang=None):
# Sort?
spec['keycodes'] = dict(sorted(spec.get('keycodes', {}).items()))
+ spec['ranges'] = dict(sorted(spec.get('ranges', {}).items()))
# Validate?
_validate(spec)