flake8: ignore F812 rule for PY2
This commit is contained in:
parent
a3d3604416
commit
b3b0c8d51e
1 changed files with 2 additions and 0 deletions
2
.flake8
2
.flake8
|
|
@ -5,6 +5,8 @@ ignore =
|
|||
E266,
|
||||
# do not assign a lambda expression, use a def
|
||||
E731,
|
||||
# [PY2] list comprehension redefines `name` from line `N`
|
||||
F812,
|
||||
# line break after binary operator
|
||||
W504
|
||||
max_line_length = 99
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue