From e432aefaba97c94e4d044cc4df3810a305832789 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 21 Nov 2025 17:33:48 -0500 Subject: [PATCH] chore: banned imports no longer needed for typing (UP handles it) Signed-off-by: Henry Schreiner --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 577b168b..2d27a4fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -209,11 +209,6 @@ ignore = [ ] [tool.ruff.lint.flake8-tidy-imports.banned-api] -"typing.Callable".msg = "Use collections.abc.Callable instead." -"typing.Iterator".msg = "Use collections.abc.Iterator instead." -"typing.Mapping".msg = "Use collections.abc.Mapping instead." -"typing.Sequence".msg = "Use collections.abc.Sequence instead." -"typing.Set".msg = "Use collections.abc.Set instead." "importlib.abc".msg = "Use sp_repo_review._compat.importlib.resources.abc instead." "importlib.resources.abc".msg = "Use sp_repo_review._compat.importlib.resources.abc instead."