From e9786458fafb47bc2a7407054cc24ae39e6731b6 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 15 Jan 2015 23:09:18 +0100 Subject: [PATCH] Really ignore pylint checks. --- scripts/run_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_checks.py b/scripts/run_checks.py index 4d980d5e3..a577468c4 100755 --- a/scripts/run_checks.py +++ b/scripts/run_checks.py @@ -101,6 +101,7 @@ def run(name, target=None): def check_pep257(target): """Run pep257 checker with args passed.""" + # pylint: disable=assignment-from-no-return,no-member args = _get_args('pep257') sys.argv = ['pep257', target] if args is not None: @@ -111,7 +112,6 @@ def check_pep257(target): status = pep257.run_pep257() else: # older pep257 versions - # pylint: disable=assignment-from-no-return,no-member status = pep257.main(*pep257.parse_options()) print() return status