summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-03-31 10:16:14 +1100
committerGitHub <noreply@github.com>2021-03-31 10:16:14 +1100
commit8a950a7116fa8401148efa14a1da47b0879ec379 (patch)
tree5cba56802535dc99e6d381f04943bf6686879566
parent64551a8386d4c84c16c859b0bdbb05a623fe8e89 (diff)
Format code according to conventions (#12437)
Co-authored-by: QMK Bot <hello@qmk.fm>
-rw-r--r--lib/python/qmk/cli/cformat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/cformat.py b/lib/python/qmk/cli/cformat.py
index 1edb30553a..c7e93b2ab6 100644
--- a/lib/python/qmk/cli/cformat.py
+++ b/lib/python/qmk/cli/cformat.py
@@ -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