Remove even more unused TypeVars (#6928)

This commit is contained in:
Alex Waygood
2022-01-16 16:07:32 +00:00
committed by GitHub
parent dbcb38a605
commit 425ba77bb2
10 changed files with 5 additions and 18 deletions

View File

@@ -1,10 +1,8 @@
from _typeshed import SupportsGetItem, SupportsItemAccess
from builtins import type as _type
from typing import IO, Any, AnyStr, Iterable, Iterator, List, Mapping, Protocol, TypeVar
from typing import IO, Any, AnyStr, Iterable, Iterator, List, Mapping, Protocol
from UserDict import UserDict
_T = TypeVar("_T", bound=FieldStorage)
def parse(
fp: IO[Any] | None = ...,
environ: SupportsItemAccess[str, str] = ...,