stdlib/@python2: clean imports (#5453)

This commit is contained in:
Akuli
2021-05-15 02:08:37 +03:00
committed by GitHub
parent 5ec4f06263
commit 15b0959cf8
144 changed files with 77 additions and 294 deletions

View File

@@ -1,22 +1,5 @@
import os
import sys
from _typeshed import StrPath, SupportsRead, SupportsWrite
from typing import (
Any,
AnyStr,
Callable,
Iterable,
List,
NamedTuple,
Optional,
Sequence,
Set,
Tuple,
Type,
TypeVar,
Union,
overload,
)
from typing import Any, AnyStr, Callable, Iterable, List, Optional, Sequence, Set, Tuple, Type, TypeVar, Union
_AnyStr = TypeVar("_AnyStr", str, unicode)
_AnyPath = TypeVar("_AnyPath", str, unicode)