Remove a bunch of unused imports (#3323)

This commit is contained in:
Sebastian Rittau
2019-10-08 16:59:32 +02:00
committed by Jelle Zijlstra
parent a6f146e651
commit 256b3ce8ab
47 changed files with 31 additions and 95 deletions

View File

@@ -2,10 +2,7 @@ from email.message import Message as _Message
from socket import socket
from ssl import SSLContext
from types import TracebackType
from typing import (
Any, AnyStr, Dict, Generic, List, Optional, Sequence, Tuple, Union,
Pattern, Type, Callable, Protocol, overload)
import sys
from typing import Any, Dict, List, Optional, Sequence, Tuple, Union, Pattern, Type, Protocol, overload
_Reply = Tuple[int, bytes]
_SendErrs = Dict[str, _Reply]