From 0b05223d8eacb254e799645560a1c77358bde82f Mon Sep 17 00:00:00 2001 From: josep-tecnativa Date: Tue, 7 Nov 2023 17:24:42 +0100 Subject: [PATCH] [FIX] ignore error B023 Ignore this error because is a false positive in order to avoid pre-commit errors --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 1a92be63..b2dccf6d 100644 --- a/.flake8 +++ b/.flake8 @@ -2,6 +2,6 @@ # HACK https://gitlab.com/pycqa/flake8/issues/428 [flake8] # See https://github.com/psf/black#line-length -ignore = E203, E501, W503, B950 +ignore = E203, E501, W503, B950, B023 max-line-length = 88 select = C,E,F,W,B