diff options
author | Ryan <fauxpark@gmail.com> | 2021-09-12 14:04:56 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-12 14:04:56 +1000 |
commit | 4791cfae1af0bc15a0bd8417c5195bf482b87605 (patch) | |
tree | c8bce61c28184407f9af5cd6b07f369c5c51acb0 /lib/python | |
parent | f1084712d72eb0e942ac46a9e606cc2d3af11dc6 (diff) | |
download | qmk_firmware-4791cfae1af0bc15a0bd8417c5195bf482b87605.tar.gz qmk_firmware-4791cfae1af0bc15a0bd8417c5195bf482b87605.zip |
Remove width, height and key_count from info.json (#14274)
Diffstat (limited to 'lib/python')
-rw-r--r-- | lib/python/qmk/c_parse.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/python/qmk/c_parse.py b/lib/python/qmk/c_parse.py index 991373d56..e7d44a514 100644 --- a/lib/python/qmk/c_parse.py +++ b/lib/python/qmk/c_parse.py | |||
@@ -74,7 +74,6 @@ def find_layouts(file): | |||
74 | key['matrix'] = matrix_locations[key['label']] | 74 | key['matrix'] = matrix_locations[key['label']] |
75 | 75 | ||
76 | parsed_layouts[macro_name] = { | 76 | parsed_layouts[macro_name] = { |
77 | 'key_count': len(parsed_layout), | ||
78 | 'layout': parsed_layout, | 77 | 'layout': parsed_layout, |
79 | 'filename': str(file), | 78 | 'filename': str(file), |
80 | } | 79 | } |