Remove several unused TypeVars (#6829)

This commit is contained in:
Alex Waygood
2022-01-05 15:58:03 +00:00
committed by GitHub
parent beedc1d039
commit 2268955701
7 changed files with 3 additions and 13 deletions

View File

@@ -25,7 +25,6 @@ from typing_extensions import Literal, ParamSpec, final
# Note, all classes "defined" here require special handling.
_T = TypeVar("_T")
_T1 = TypeVar("_T1")
_T2 = TypeVar("_T2")
_T_co = TypeVar("_T_co", covariant=True)