Browse Source

Format code according to conventions (#12437)

Co-authored-by: QMK Bot <hello@qmk.fm>
pull/12441/head
github-actions[bot] 3 years ago
committed by GitHub
parent
commit
8a950a7116
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/python/qmk/cli/cformat.py

+ 1
- 1
lib/python/qmk/cli/cformat.py View File

@ -14,7 +14,7 @@ def cformat_run(files, all_files):
"""
# Determine which version of clang-format to use
clang_format = ['clang-format', '-i']
for clang_version in range(20,6,-1):
for clang_version in range(20, 6, -1):
binary = 'clang-format-%d' % clang_version
if which(binary):
clang_format[0] = binary


Loading…
Cancel
Save