From acfe646eb6c96ab2a152b4e348fd63f8c6be6091 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 6 May 2024 22:42:11 +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 875080e4..90401b29 100644 --- a/tox.ini +++ b/tox.ini @@ -32,6 +32,6 @@ commands = [flake8] max-line-length = 88 -extend-ignore = E203 +extend-ignore = E203,E501 per-file-ignores = src/whitenoise/media_types.py:E501