diff options
author | QMK Bot <hello@qmk.fm> | 2021-04-15 02:00:59 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-04-15 02:00:59 +0000 |
commit | 2c0aa27e6c0db68c026d2e8d1b416bac5e9599a5 (patch) | |
tree | 8b0bb8f960c3edb631e30d391eb69443c85c48c2 /lib/python/qmk/cli/json2c.py | |
parent | 19b143688fabcad7ffd192e56642232f1a08fdae (diff) | |
parent | 588bcdc8ca212b195a428fc43766a59a9252c08d (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk/cli/json2c.py')
-rwxr-xr-x | lib/python/qmk/cli/json2c.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/json2c.py b/lib/python/qmk/cli/json2c.py index 5a2fb96c78..a90578c021 100755 --- a/lib/python/qmk/cli/json2c.py +++ b/lib/python/qmk/cli/json2c.py @@ -2,6 +2,7 @@ """ import json +from argcomplete.completers import FilesCompleter from milc import cli import qmk.keymap @@ -10,7 +11,7 @@ import qmk.path @cli.argument('-o', '--output', arg_only=True, type=qmk.path.normpath, help='File to write to') @cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages") -@cli.argument('filename', type=qmk.path.FileType('r'), arg_only=True, help='Configurator JSON file') +@cli.argument('filename', type=qmk.path.FileType('r'), arg_only=True, completer=FilesCompleter('.json'), help='Configurator JSON file') @cli.subcommand('Creates a keymap.c from a QMK Configurator export.') def json2c(cli): """Generate a keymap.c from a configurator export. |