mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 04:25:50 +08:00
Add missing Dict, List, Set, Tuple imports.
This commit is contained in:
Vendored
+1
@@ -9,6 +9,7 @@ from typing import (
|
||||
Mapping,
|
||||
Optional,
|
||||
Sequence,
|
||||
Set,
|
||||
Tuple,
|
||||
TypeVar,
|
||||
Union,
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
from contextlib import contextmanager
|
||||
from typing import Generator, Iterable, Optional, Tuple
|
||||
from typing import Generator, Iterable, List, Optional, Tuple
|
||||
|
||||
|
||||
FORCED_WIDTH: Optional[int]
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
from typing import Any, Iterable, List, Optional, Tuple
|
||||
from typing import Any, Dict, Iterable, List, Optional, Set, Tuple
|
||||
|
||||
from click.core import Context
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
from typing import Any, Callable, IO, Iterable, Optional, TypeVar, Union
|
||||
from typing import Any, Callable, IO, Iterable, List, Optional, TypeVar, Union
|
||||
import uuid
|
||||
|
||||
from click.core import Context, Parameter
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
from typing import Any, Callable, Iterator, IO, Optional, TypeVar, Union
|
||||
from typing import Any, Callable, Iterator, IO, List, Optional, TypeVar, Union
|
||||
|
||||
|
||||
T = TypeVar('T')
|
||||
|
||||
Reference in New Issue
Block a user