summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-08-20 17:17:12 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-08-20 17:17:12 -0400
commitbf8c57034ab857eb5b642fbc137a811276e8067a (patch)
treeb1bcd08070e53174a86da90a2ea7300c54469ac9
parent5d245bb8ca22194dbf17e69f7db5f082101f931c (diff)
downloadpytest-runner-bf8c57034ab857eb5b642fbc137a811276e8067a.tar.gz
Also ignore W504 in flake8, following the indication in OCA/maintainer-quality-tools that neither W503 nor W504 are worthwhile in general.
-rw-r--r--.flake82
1 files changed, 2 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
index df5f527..c85d34a 100644
--- a/.flake8
+++ b/.flake8
@@ -4,3 +4,5 @@ ignore =
W191
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
W503
+ # W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
+ W504