diff options
Diffstat (limited to 'lib/python/qmk/cli/json/keymap.py')
-rwxr-xr-x | lib/python/qmk/cli/json/keymap.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/python/qmk/cli/json/keymap.py b/lib/python/qmk/cli/json/keymap.py index e2d0b5809..a65acd619 100755 --- a/lib/python/qmk/cli/json/keymap.py +++ b/lib/python/qmk/cli/json/keymap.py | |||
@@ -9,10 +9,10 @@ from milc import cli | |||
9 | import qmk.keymap | 9 | import qmk.keymap |
10 | 10 | ||
11 | 11 | ||
12 | @cli.argument('-o', '--output', help='File to write to') | 12 | @cli.argument('-o', '--output', arg_only=True, help='File to write to') |
13 | @cli.argument('filename', help='Configurator JSON file') | 13 | @cli.argument('filename', arg_only=True, help='Configurator JSON file') |
14 | @cli.entrypoint('Create a keymap.c from a QMK Configurator export.') | 14 | @cli.subcommand('Create a keymap.c from a QMK Configurator export.') |
15 | def main(cli): | 15 | def json_keymap(cli): |
16 | """Generate a keymap.c from a configurator export. | 16 | """Generate a keymap.c from a configurator export. |
17 | 17 | ||
18 | This command uses the `qmk.keymap` module to generate a keymap.c from a configurator export. The generated keymap is written to stdout, or to a file if -o is provided. | 18 | This command uses the `qmk.keymap` module to generate a keymap.c from a configurator export. The generated keymap is written to stdout, or to a file if -o is provided. |
@@ -28,8 +28,8 @@ def main(cli): | |||
28 | exit(1) | 28 | exit(1) |
29 | 29 | ||
30 | # Environment processing | 30 | # Environment processing |
31 | if cli.config.general.output == ('-'): | 31 | if cli.args.output == ('-'): |
32 | cli.config.general.output = None | 32 | cli.args.output = None |
33 | 33 | ||
34 | # Parse the configurator json | 34 | # Parse the configurator json |
35 | with open(qmk.path.normpath(cli.args.filename), 'r') as fd: | 35 | with open(qmk.path.normpath(cli.args.filename), 'r') as fd: |
@@ -38,17 +38,17 @@ def main(cli): | |||
38 | # Generate the keymap | 38 | # Generate the keymap |
39 | keymap_c = qmk.keymap.generate(user_keymap['keyboard'], user_keymap['layout'], user_keymap['layers']) | 39 | keymap_c = qmk.keymap.generate(user_keymap['keyboard'], user_keymap['layout'], user_keymap['layers']) |
40 | 40 | ||
41 | if cli.config.general.output: | 41 | if cli.args.output: |
42 | output_dir = os.path.dirname(cli.config.general.output) | 42 | output_dir = os.path.dirname(cli.args.output) |
43 | 43 | ||
44 | if not os.path.exists(output_dir): | 44 | if not os.path.exists(output_dir): |
45 | os.makedirs(output_dir) | 45 | os.makedirs(output_dir) |
46 | 46 | ||
47 | output_file = qmk.path.normpath(cli.config.general.output) | 47 | output_file = qmk.path.normpath(cli.args.output) |
48 | with open(output_file, 'w') as keymap_fd: | 48 | with open(output_file, 'w') as keymap_fd: |
49 | keymap_fd.write(keymap_c) | 49 | keymap_fd.write(keymap_c) |
50 | 50 | ||
51 | cli.log.info('Wrote keymap to %s.', cli.config.general.output) | 51 | cli.log.info('Wrote keymap to %s.', cli.args.output) |
52 | 52 | ||
53 | else: | 53 | else: |
54 | print(keymap_c) | 54 | print(keymap_c) |