From af821ecda13ae206c1f135197f8ec6cc6280057a Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 8 Jun 2024 23:47:55 +0100 Subject: [PATCH] Fix `TypeVarTuple` typo in pyupgrade rule (#11806) --- .../ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs b/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs index 9d9bac137cd5e..8f1f00567139b 100644 --- a/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs +++ b/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs @@ -389,7 +389,7 @@ const TYPING_EXTENSIONS_TO_TYPING_313: &[&str] = &[ // but typing_extensions backports PEP-696: "ParamSpec", "TypeVar", - "TypevarTuple", + "TypeVarTuple", ]; // Members of `typing_extensions` that were moved to `types`.