From: Daniele Varrazzo Date: Sun, 23 Aug 2020 18:22:29 +0000 (+0100) Subject: Flake8 configured to deal with the psycopg3 dir X-Git-Tag: 3.0.dev0~459 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3978ff4192e11ce9f8cda480f395fca4e6bd5aa8;p=thirdparty%2Fpsycopg.git Flake8 configured to deal with the psycopg3 dir --- diff --git a/psycopg3/tox.ini b/psycopg3/tox.ini index f5f209758..28fa9ea4d 100644 --- a/psycopg3/tox.ini +++ b/psycopg3/tox.ini @@ -7,3 +7,7 @@ commands = pytest ../tests {posargs} passenv = PG* PSYCOPG3_TEST_DSN PYTEST_ADDOPTS PSYCOPG3_IMPL extras = test + +[flake8] +max-line-length = 85 +ignore = W503, E203