~ruther/qmk_firmware

8a950a7116fa8401148efa14a1da47b0879ec379 — github-actions[bot] 4 years ago 64551a8
Format code according to conventions (#12437)

Co-authored-by: QMK Bot <hello@qmk.fm>
1 files changed, 1 insertions(+), 1 deletions(-)

M lib/python/qmk/cli/cformat.py
M lib/python/qmk/cli/cformat.py => lib/python/qmk/cli/cformat.py +1 -1
@@ 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