From b3e33ddddec93594b3215a7e2495b12e6f134fcf Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 16 Feb 2015 13:16:59 -0500 Subject: [PATCH] Appease pylint 1.6.2: Added check for breaking around a binary operator. --- run_pylint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_pylint.py b/run_pylint.py index 6e08fdc20b75..107b25d649a0 100644 --- a/run_pylint.py +++ b/run_pylint.py @@ -103,8 +103,8 @@ def is_production_filename(filename): :rtype: boolean :returns: Boolean indicating production status. """ - return not ('demo' in filename or 'test' in filename - or filename.startswith('regression')) + return not ('demo' in filename or 'test' in filename or + filename.startswith('regression')) def get_files_for_linting(allow_limited=True):