From e54b9730fcd046026eee508eae480a831a1f26ac Mon Sep 17 00:00:00 2001 From: rht Date: Sat, 4 Nov 2017 13:21:48 +0100 Subject: [PATCH] Reduce python files line length limit to 110. License: Apache-2.0 Signed-off-by: rht --- tools/linter_lib/custom_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/linter_lib/custom_check.py b/tools/linter_lib/custom_check.py index 8773eee741..04cd6902a9 100644 --- a/tools/linter_lib/custom_check.py +++ b/tools/linter_lib/custom_check.py @@ -610,7 +610,7 @@ def build_custom_checkers(by_lang): for fn in by_lang['py']: if 'custom_check.py' in fn: continue - if custom_check_file(fn, 'py', python_rules, color, max_length=120): + if custom_check_file(fn, 'py', python_rules, color, max_length=110): failed = True return failed