From 5fdc9176e53e730338c51205bf216c108e669a5a Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Tue, 6 Feb 2024 09:04:10 +0100 Subject: [PATCH] Ignored flake8-bugbear B036. (#499) "except BaseException: without re-raising" used in testing.py --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 26b3352..a78e654 100644 --- a/setup.cfg +++ b/setup.cfg @@ -50,7 +50,7 @@ tests = [flake8] exclude = venv/*,tox/*,docs/*,testproject/*,js_client/*,.eggs/* -extend-ignore = E123, E128, E266, E402, W503, E731, W601 +extend-ignore = E123, E128, E266, E402, W503, E731, W601, B036 max-line-length = 120 [isort]