From 050bf556e65878f86594793e1c26a90a7be06476 Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Sat, 15 Oct 2022 21:00:36 +0100 Subject: [PATCH] utils: Fix check-style-clang-format.py formatting --- utils/check-style-clang-format.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/check-style-clang-format.py b/utils/check-style-clang-format.py index bdd57798f..1adeff0ad 100755 --- a/utils/check-style-clang-format.py +++ b/utils/check-style-clang-format.py @@ -245,7 +245,8 @@ def find_clang_format_path() -> str: clang_format_path = shutil.which('clang-format') if clang_format_path: - process = subprocess.run([clang_format_path, '--version'], + process = subprocess.run( + [clang_format_path, '--version'], capture_output=True, text=True, check=True,