diff options
Diffstat (limited to 'lib/python/qmk/cli/pyformat.py')
-rwxr-xr-x | lib/python/qmk/cli/pyformat.py | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/python/qmk/cli/pyformat.py b/lib/python/qmk/cli/pyformat.py index 146444380..02581f0d8 100755 --- a/lib/python/qmk/cli/pyformat.py +++ b/lib/python/qmk/cli/pyformat.py | |||
@@ -5,13 +5,22 @@ from milc import cli | |||
5 | import subprocess | 5 | import subprocess |
6 | 6 | ||
7 | 7 | ||
8 | @cli.argument('-n', '--dry-run', arg_only=True, action='store_true', help="Flag only, don't automatically format.") | ||
8 | @cli.subcommand("Format python code according to QMK's style.", hidden=False if cli.config.user.developer else True) | 9 | @cli.subcommand("Format python code according to QMK's style.", hidden=False if cli.config.user.developer else True) |
9 | def pyformat(cli): | 10 | def pyformat(cli): |
10 | """Format python code according to QMK's style. | 11 | """Format python code according to QMK's style. |
11 | """ | 12 | """ |
13 | edit = '--diff' if cli.args.dry_run else '--in-place' | ||
14 | yapf_cmd = ['yapf', '-vv', '--recursive', edit, 'bin/qmk', 'lib/python'] | ||
12 | try: | 15 | try: |
13 | subprocess.run(['yapf', '-vv', '-ri', 'bin/qmk', 'lib/python'], check=True) | 16 | cli.run(yapf_cmd, check=True, capture_output=False) |
14 | cli.log.info('Successfully formatted the python code in `bin/qmk` and `lib/python`.') | 17 | cli.log.info('Python code in `bin/qmk` and `lib/python` is correctly formatted.') |
18 | return True | ||
15 | 19 | ||
16 | except subprocess.CalledProcessError: | 20 | except subprocess.CalledProcessError: |
17 | cli.log.error('Error formatting python code!') | 21 | if cli.args.dry_run: |
22 | cli.log.error('Python code in `bin/qmk` and `lib/python` incorrectly formatted!') | ||
23 | else: | ||
24 | cli.log.error('Error formatting python code!') | ||
25 | |||
26 | return False | ||