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,9 @@
from _typeshed import SupportsRead, SupportsReadline
from socket import socket
from ssl import SSLContext
from typing import Any, BinaryIO, Callable, List, Text, Tuple, Type, TypeVar, Union
from typing import Any, BinaryIO, Callable, List, Text, Tuple, Type, Union
from typing_extensions import Literal
_T = TypeVar("_T")
_IntOrStr = Union[int, Text]
MSG_OOB: int