From: Mike Bayer Date: Mon, 1 Apr 2024 23:28:01 +0000 (-0400) Subject: new flake8-builtins adds a code we dont want X-Git-Tag: rel_2_0_30~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a1ef60885ed948cdb3e2d84c97a007e7988fe6b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git new flake8-builtins adds a code we dont want A005 "he module is shadowing a Python builtin module " Change-Id: I9c7464e8f0c32df76d4c455e502b8bc7f94aa038 (cherry picked from commit c3f8bd1c27fd5e376e88533542aa6fd669c58067) --- diff --git a/setup.cfg b/setup.cfg index 45b6c47914..c977ae7a98 100644 --- a/setup.cfg +++ b/setup.cfg @@ -105,7 +105,7 @@ enable-extensions = G # E203 is due to https://github.com/PyCQA/pycodestyle/issues/373 ignore = - A003, + A003,A005 D, E203,E305,E701,E704,E711,E712,E721,E722,E741, N801,N802,N806,