Ignore D402 check for pep257

This commit is contained in:
Florian Bruhin 2014-04-17 15:31:30 +02:00
parent 457e173592
commit e8db103eb4

View File

@ -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'],