summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-03-30 23:17:00 +0000
committerQMK Bot <hello@qmk.fm>2021-03-30 23:17:00 +0000
commita8889718aa1f8d0d15dce86ebf3d2e8c12ba6abb (patch)
tree3e91d20e42df159b5927c52babba66dcb151ac1b /lib
parent1704eb16cd5c7405ae7d6eba051586b9368635d6 (diff)
parent8a950a7116fa8401148efa14a1da47b0879ec379 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-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