From 2f88e69ed4d26fc52d09d2656b8a8a75117f9c58 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 19 Dec 2017 16:23:27 -0600 Subject: [PATCH] fix inconsistent indentation --- script/cpplint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cpplint.py b/script/cpplint.py index ca4cdf70f5..674426bb66 100755 --- a/script/cpplint.py +++ b/script/cpplint.py @@ -89,7 +89,7 @@ def find_files(roots, test): def is_cpp_file(filename): - return filename.endswith('.cc') or filename.endswith('.h') + return filename.endswith('.cc') or filename.endswith('.h') def find_changed_files():