From 308082d1ad1095c9b28514ce424c12801b2641d9 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 6 May 2024 22:42:10 +0100 Subject: [PATCH] Ignore Flake8 max line length errors It doesn't matter when Black formats lines as much as it can. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8d94e6f..c7b3bda 100644 --- a/tox.ini +++ b/tox.ini @@ -23,4 +23,4 @@ commands = [flake8] max-line-length = 88 -extend-ignore = E203 +extend-ignore = E203,E501