From f0bdce358a6194dffe93d4ffdfd927afc9e8d93a Mon Sep 17 00:00:00 2001 From: Avasam Date: Thu, 26 Dec 2024 16:03:06 -0500 Subject: [PATCH] Remove redundant Bandit disabling in stubs --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 501066318b0b..8dd24bf1f119 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,9 +100,6 @@ ignore = [ [tool.ruff.lint.per-file-ignores] "*.pyi" = [ - # Most flake8-bugbear rules don't apply for third-party stubs like typeshed. - # B033 could be slightly useful but Ruff doesn't have per-file select - "B", # flake8-bugbear # Rules that are out of the control of stub authors: "F403", # `from . import *` used; unable to detect undefined names # Stubs can sometimes re-export entire modules.