From 4e9476c49f217be8f3550d607fe7251882dc8670 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 8 Feb 2015 09:50:14 +0530 Subject: [PATCH] Squelch the silly E402 errors from pep8 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 29bb083103..48e87f8a5d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [flake8] max-line-length = 160 builtins = _,dynamic_property,__,P,I,lopen,icu_lower,icu_upper,icu_title,ngettext -ignore = E12,E203,E22,E231,E241,E301,E302,E304,E401,W391 +ignore = E12,E203,E22,E231,E241,E301,E302,E304,E401,E402,W391