From 642e2e8d18410a52777c96d0a6f3364f1bd229c0 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 6 May 2024 22:42:08 +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 9f64470..af4a06e 100644 --- a/tox.ini +++ b/tox.ini @@ -21,4 +21,4 @@ commands = [flake8] max-line-length = 88 -extend-ignore = E203 +extend-ignore = E203,E501