From e8db103eb4b150acfb3c73eb3a5717486361a41a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 17 Apr 2014 15:31:30 +0200 Subject: [PATCH] Ignore D402 check for pep257 --- run_checks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run_checks.py b/run_checks.py index a51f22bad..c487c8188 100644 --- a/run_checks.py +++ b/run_checks.py @@ -42,6 +42,8 @@ options = { 'pep257': [ 'D102', # Docstring missing, will be handled by others 'D209', # Blank line before closing """ (removed from PEP257) + 'D402', # First line should not be function's signature + # (false-positives) ], }, 'exclude': ['appdirs.py'],