From d99bdc82c124838045a8bd3f495cc8888f78d4b5 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Mon, 18 Oct 2021 14:03:51 +0530 Subject: [PATCH] pycodestyle: Ignore E402 E402 is 'module level import not at top of file'. --- pycodestyle/.config/pycodestyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycodestyle/.config/pycodestyle b/pycodestyle/.config/pycodestyle index f9416d6..383d3b7 100644 --- a/pycodestyle/.config/pycodestyle +++ b/pycodestyle/.config/pycodestyle @@ -1,4 +1,4 @@ [pycodestyle] count = False -ignore = E501,W503 +ignore = E402,E501,W503 statistics = True