summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-08-01 01:54:28 +0100
committerGitHub <noreply@github.com>2023-08-01 01:54:28 +0100
commit27ff1d4153ebe1476fdb011a5a136811e600412b (patch)
treef3f0d25886280ae98adcf7293b7cb06ec40c1e05 /lib
parent5369d806bc3ca900c4bccb2cd751774c4ae55e08 (diff)
Remove layout aliases from keyboard_aliases.hjson (#21658)
Diffstat (limited to 'lib')
-rw-r--r--lib/python/qmk/commands.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py
index ab8e323edf..660b2ff72e 100644
--- a/lib/python/qmk/commands.py
+++ b/lib/python/qmk/commands.py
@@ -219,9 +219,6 @@ def parse_configurator_json(configurator_file):
if 'target' in aliases[orig_keyboard]:
user_keymap['keyboard'] = aliases[orig_keyboard]['target']
- if 'layouts' in aliases[orig_keyboard] and user_keymap['layout'] in aliases[orig_keyboard]['layouts']:
- user_keymap['layout'] = aliases[orig_keyboard]['layouts'][user_keymap['layout']]
-
return user_keymap