[python] stop flake8 from complaining over binary operators

This commit is contained in:
Dmytro Meleshko 2021-05-05 01:41:59 +03:00
parent a79d588f34
commit 578180ea4c
1 changed files with 4 additions and 0 deletions

View File

@ -10,3 +10,7 @@ ignore =
E402
# Line too long
E501
# Newline before a binary operator
W503
# Newline after a binary operator
W504