diff options
author | Erovia <erovia@users.noreply.github.com> | 2020-03-22 19:48:30 +0100 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2020-04-08 09:31:14 -0700 |
commit | 5cfc3ce02e3c8007ac42e8089ecc895771bb3bfb (patch) | |
tree | cd57c376585c927e353190a785810b68ad9f9594 /lib/python/qmk/cli/kle2json.py | |
parent | 724f20ed32758b0c5d91ad4b7ba4a9348e152eeb (diff) | |
download | qmk_firmware-5cfc3ce02e3c8007ac42e8089ecc895771bb3bfb.tar.gz qmk_firmware-5cfc3ce02e3c8007ac42e8089ecc895771bb3bfb.zip |
Rebase on master, hide some other subcommands
The list of hidden subcommands were approved by @skullydazed ;)
Currently hidden if 'user.developer' is not True:
- cformat
- docs
- kle2json
- pyformat
- pytest
Diffstat (limited to 'lib/python/qmk/cli/kle2json.py')
-rwxr-xr-x | lib/python/qmk/cli/kle2json.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/kle2json.py b/lib/python/qmk/cli/kle2json.py index 00f63d362..4e74e75a3 100755 --- a/lib/python/qmk/cli/kle2json.py +++ b/lib/python/qmk/cli/kle2json.py | |||
@@ -26,7 +26,7 @@ class CustomJSONEncoder(json.JSONEncoder): | |||
26 | 26 | ||
27 | @cli.argument('filename', help='The KLE raw txt to convert') | 27 | @cli.argument('filename', help='The KLE raw txt to convert') |
28 | @cli.argument('-f', '--force', action='store_true', help='Flag to overwrite current info.json') | 28 | @cli.argument('-f', '--force', action='store_true', help='Flag to overwrite current info.json') |
29 | @cli.subcommand('Convert a KLE layout to a Configurator JSON') | 29 | @cli.subcommand('Convert a KLE layout to a Configurator JSON', hidden=True) |
30 | def kle2json(cli): | 30 | def kle2json(cli): |
31 | """Convert a KLE layout to QMK's layout format. | 31 | """Convert a KLE layout to QMK's layout format. |
32 | """ # If filename is a path | 32 | """ # If filename is a path |