Fix TypeVarTuple typo in pyupgrade rule (#11806)

This commit is contained in:
Alex Waygood 2024-06-08 23:47:55 +01:00 committed by GitHub
parent ccc418cc49
commit af821ecda1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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`.