From 65e30325765c2816683a7432c80930becaa588bd Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 14 Nov 2016 11:53:05 -0500 Subject: Suppress E305 and E306 errors, which were newly failing. --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 85b6dd367..df4013f6e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,6 +47,10 @@ ignore = E302, # E303: too many blank lines (3) E303, + # E305: expected 2 blank lines after class or function definition, found 1 + E305, + # E306: expected 1 blank line before a nested definition, found 0 + E306, # E501: line too long (82 > 79 characters) E501, # E731: do not assign a lambda expression, use a def -- cgit v1.2.3