From e23e86a2beb13a66884d1670fd11a8988a605cc9 Mon Sep 17 00:00:00 2001 From: Lucas Wiman Date: Mon, 2 Jul 2018 12:52:47 -0700 Subject: [PATCH] Ignore W503 line break before binary operator It doesn't seem like following this rule will lead to clearer code in the violations in this codebase. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6c6da4e..c46b78a 100644 --- a/tox.ini +++ b/tox.ini @@ -38,4 +38,5 @@ commands = [flake8] ignore = - E731 + E731, ; do not assign a lambda expression, use a def + W503 ; line break before binary operator