From c95635e5e901d87a11d9fe8b5d7b689f35abf559 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 14 Dec 2018 19:39:53 -0800 Subject: flake8 fixes after upgrading it to 3.6.0 - bare excepts weren't an error before? huh. too lazy to fix them right now though, given the rest of this code... - ambiguous variables are new; not clear why they're ambiguous besides being short. but, fixed - some wacky non-escape sequence in some awful gssapi output strings. whatever. removed --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index bf86db42..7ff383c3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,9 @@ omit = paramiko/_winapi.py exclude = sites,.git,build,dist,demos,tests # 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 +# NOTE: E722 seems to only have started popping up on move to flake8 3.6.0 from +# 2.4.0. Not sure why, bare excepts have been a (regrettable) thing forever... +ignore = E124,E125,E128,E261,E301,E302,E303,E402,E721,W503,E203,E722 max-line-length = 79 [tool:pytest] -- cgit v1.2.3