Fix pylint's bad-builtin and deprecated-lambda with list comprehension.

This commit is contained in:
Andris Raugulis
2017-03-26 05:54:14 +03:00
parent 6d9f5e6f2a
commit 74d1b5c7b5
2 changed files with 10 additions and 4 deletions

View File

@ -110,7 +110,13 @@ strict_optional = True
reports = no
#output-format = colorized
indent-string = \t
disable = locally-disabled, bad-continuation, multiple-imports, invalid-name, trailing-whitespace, missing-docstring
disable =
locally-disabled,
bad-continuation,
multiple-imports,
invalid-name,
trailing-whitespace,
missing-docstring
max-complexity = 15
max-args = 8
max-locals = 20