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

@@ -5,7 +5,7 @@ from io import TextIOWrapper as _TextIOWrapper
from posix import listdir as listdir, times_result
import sys
from typing import (
Mapping, MutableMapping, Dict, List, Any, Tuple, IO, Iterable, Iterator, NoReturn, overload, Union, AnyStr,
Mapping, MutableMapping, Dict, List, Any, Tuple, Iterable, Iterator, NoReturn, overload, Union, AnyStr,
Optional, Generic, Set, Callable, Text, Sequence, NamedTuple, TypeVar, ContextManager
)

View File

@@ -4,10 +4,7 @@
import os
import sys
from typing import (
overload, List, Any, AnyStr, Sequence, Tuple, BinaryIO, TextIO,
TypeVar, Union, Text, Callable, Optional
)
from typing import overload, List, Any, AnyStr, Sequence, Tuple, TypeVar, Union, Text, Callable, Optional
_T = TypeVar('_T')