From 8eafe5eaeadfbe91274a0a0915ee6903990e3fed Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 12 Feb 2025 22:48:31 -0500 Subject: [PATCH] [CI/Build] Ignore ruff warning up007 (#13182) Signed-off-by: Russell Bryant --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9892967b82d79..849e8781e24ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,8 @@ ignore = [ "UP032", # Python 3.8 typing "UP006", "UP035", - + # Can remove once 3.10+ is the minimum Python version + "UP007", ] [tool.mypy]