From 8c525534f7d54c22dc9630b6ab44e040b1306b44 Mon Sep 17 00:00:00 2001 From: Boram Bae Date: Wed, 12 May 2021 13:31:57 +0900 Subject: [PATCH] Use config file strictly Signed-off-by: Boram Bae --- tools/check_tidy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check_tidy.py b/tools/check_tidy.py index e35a26138..67eb136c9 100755 --- a/tools/check_tidy.py +++ b/tools/check_tidy.py @@ -65,7 +65,7 @@ def report_error(msg, line=None): with open(file, 'r') as f: original = f.readlines() - formatted = subprocess.check_output([clang_format, '-style=Google', file]) + formatted = subprocess.check_output([clang_format, '-style=file', file]) if update: with open(file, 'w') as f: