summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-02-06 09:54:00 -0500
committerJason R. Coombs <jaraco@jaraco.com>2019-02-06 09:54:00 -0500
commit12eed1326e1bc26ce256e7b3f8cd8d3a5beab2d5 (patch)
tree719820a5bca53af7c133b75507f9790025c4844c
parent4310c976400dc2eab8d8597b0dffaa7b787cff71 (diff)
downloadpytest-runner-12eed1326e1bc26ce256e7b3f8cd8d3a5beab2d5.tar.gz
Suppress E117 as workaround for PyCQA/pycodestyle#836
-rw-r--r--.flake82
1 files changed, 2 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
index c85d34a..04d2d97 100644
--- a/.flake8
+++ b/.flake8
@@ -2,6 +2,8 @@
ignore =
# Allow tabs for indentation
W191
+ # Workaround for https://github.com/PyCQA/pycodestyle/issues/836
+ E117
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
W503
# W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545