cleanup: Move line breaks before binary operators.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
parent
6f40bcf745
commit
17cf26aa1f
12 changed files with 152 additions and 77 deletions
|
@ -68,6 +68,10 @@ def check_pep8(files: List[str]) -> bool:
|
|||
# own check for this (see max_length)
|
||||
'E501',
|
||||
|
||||
# "line break before binary operator"
|
||||
# This was obsoleted in favor of the opposite W504.
|
||||
'W503',
|
||||
|
||||
# "do not assign a lambda expression, use a def"
|
||||
# Fixing these would probably reduce readability in most cases.
|
||||
'E731',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue