summaryrefslogtreecommitdiffhomepage
path: root/setup.cfg
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-09-17 15:51:22 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-09-17 15:51:22 -0700
commit4e31612cfbcd7cb333ac54571f11dd5593b15d94 (patch)
treeb9af871f3ee08287229260d26079a6485d0f0273 /setup.cfg
parent025a250d38b0046e06dfacf437a09276a84e2c59 (diff)
Blacken 2.0 with black 18.6b4
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 2d673ea4..bf86db42 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -9,7 +9,9 @@ omit = paramiko/_winapi.py
[flake8]
exclude = sites,.git,build,dist,demos,tests
-ignore = E124,E125,E128,E261,E301,E302,E303,E402,E721,W503
+# NOTE: W503, E203 are concessions to black 18.0b5 and could be reinstated
+# later if fixed on that end.
+ignore = E124,E125,E128,E261,E301,E302,E303,E402,E721,W503,E203
max-line-length = 79
[tool:pytest]