diff options
author | Zach White <skullydazed@users.noreply.github.com> | 2020-05-26 13:05:41 -0700 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2020-08-08 20:31:13 -0700 |
commit | ec8c10ac1bd939bd210d1047f4d9d7c4dfca456d (patch) | |
tree | 33e494ba22ada101ed0b630453fbfb50792d4333 /lib/python/qmk/commands.py | |
parent | 5ea1cd3526ff49ef61cbe728409782994b83bf1b (diff) |
[CLI] Add a subcommand for getting information about a keyboard (#8666)
You can now use `qmk info` to get information about keyboards and keymaps.
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
Diffstat (limited to 'lib/python/qmk/commands.py')
-rw-r--r-- | lib/python/qmk/commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py index 5409eea2a7..a7e1d9a57f 100644 --- a/lib/python/qmk/commands.py +++ b/lib/python/qmk/commands.py @@ -67,6 +67,7 @@ def compile_configurator_json(configurator_filename, bootloader=None): def parse_configurator_json(configurator_file): """Open and parse a configurator json export """ + # FIXME(skullydazed/anyone): Add validation here user_keymap = json.load(configurator_file) return user_keymap |