Reduce python files line length limit to 110.

License: Apache-2.0
Signed-off-by: rht <rhtbot@protonmail.com>
This commit is contained in:
rht 2017-11-04 13:21:48 +01:00 committed by Tim Abbott
parent bafba95eb7
commit e54b9730fc
1 changed files with 1 additions and 1 deletions

View File

@ -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