flake8: ignore F812 rule for PY2

This commit is contained in:
Yuming Zhu 2020-02-28 00:39:57 +08:00
parent a3d3604416
commit b3b0c8d51e

View file

@ -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