From d202470b172bf271cad92ed2579faa6e479df974 Mon Sep 17 00:00:00 2001 From: Mehdi ABAAKOUK Date: Thu, 29 Dec 2022 18:26:08 +0100 Subject: [PATCH] ignore flake8-bugbear B905 requires python>=3.10 --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index a8f3c001..139256d0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -71,6 +71,8 @@ ignore = E722 # bin op line break, invalid W503 + # zip with strict=, requires python >= 3.10 + B905 # up to 88 allowed by bugbear B950 max-line-length = 80