From bcd58e0e38f053c63687237478fed09af8f3e15e Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Fri, 1 Sep 2023 17:43:50 +0000 Subject: [PATCH] tox.ini: set flake8 max-line-length to 100 Keep up with the times and new policies. Signed-off-by: Marc Herbert --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index a321069..3708996 100644 --- a/tox.ini +++ b/tox.ini @@ -19,6 +19,7 @@ envlist=py3 ignore = E126,E261,E302,E305,W504 # Don't lint setup.py, the .tox virtualenv directory, or the build directory exclude = setup.py,.tox,build +max-line-length = 100 [mypy] mypy_path=src