From debc06935b4769a66477d3349a222f65a2c4b3d7 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Mon, 8 Jul 2024 17:55:47 -0400 Subject: [PATCH] style: enable B905 to prevent issues with zip This PR explicitly requires the input of zip to have the same length. If not, there should be something wrong. Signed-off-by: Jinzhe Zeng --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 709cb0ca3..93f06b471 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,6 +89,7 @@ select = [ "F", # pyflakes "D", # pydocstyle "UP", # pyupgrade + "B905", # zip-without-explicit-strict ] ignore = [ "E501", # line too long