Skip to content

Commit

Permalink
Format code according to conventions (qmk#12437)
Browse files Browse the repository at this point in the history
Co-authored-by: QMK Bot <hello@qmk.fm>
  • Loading branch information
github-actions[bot] and qmk-bot committed Mar 30, 2021
1 parent 64551a8 commit 8a950a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/cformat.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a950a7

Please sign in to comment.