diff options
author | Ryan <fauxpark@gmail.com> | 2021-07-30 15:37:18 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 22:37:18 -0700 |
commit | 25f43837d2d603505a498662993bdeaecb7bc43d (patch) | |
tree | 476cda71954995b842c9737d11577ca96811bc63 /lib/python/qmk/json_encoders.py | |
parent | 441914e0ad6163a83cd19953821e191033a45fe2 (diff) | |
download | qmk_firmware-25f43837d2d603505a498662993bdeaecb7bc43d.tar.gz qmk_firmware-25f43837d2d603505a498662993bdeaecb7bc43d.zip |
Remove references to info.json `width` and `height` in CLI (#13728)
Diffstat (limited to 'lib/python/qmk/json_encoders.py')
-rwxr-xr-x | lib/python/qmk/json_encoders.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/python/qmk/json_encoders.py b/lib/python/qmk/json_encoders.py index 9f3da022b4..72e91973a3 100755 --- a/lib/python/qmk/json_encoders.py +++ b/lib/python/qmk/json_encoders.py @@ -102,9 +102,6 @@ class InfoJSONEncoder(QMKJSONEncoder): elif key == 'maintainer': return '12maintainer' - elif key in ('height', 'width'): - return '40' + str(key) - elif key == 'community_layouts': return '97community_layouts' |