From 5c7b9841de89826eee776af1813071ecc13d4c7f Mon Sep 17 00:00:00 2001 From: Julian Date: Tue, 22 Aug 2023 20:03:12 +1000 Subject: [PATCH] Ignore W503 (#1660) Addresses #1638 --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index 4be595273..9a24f225e 100644 --- a/tox.ini +++ b/tox.ini @@ -35,5 +35,7 @@ ignore = E501, # do not use bare 'except' E722, + # line break before binary operator + W503, # line break after binary operator W504