mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-07 18:30:57 +08:00
Add missing Dict, List, Set, Tuple imports.
This commit is contained in:
1
third_party/3.6/click/core.pyi
vendored
1
third_party/3.6/click/core.pyi
vendored
@@ -9,6 +9,7 @@ from typing import (
|
||||
Mapping,
|
||||
Optional,
|
||||
Sequence,
|
||||
Set,
|
||||
Tuple,
|
||||
TypeVar,
|
||||
Union,
|
||||
|
||||
2
third_party/3.6/click/formatting.pyi
vendored
2
third_party/3.6/click/formatting.pyi
vendored
@@ -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]
|
||||
|
||||
2
third_party/3.6/click/parser.pyi
vendored
2
third_party/3.6/click/parser.pyi
vendored
@@ -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
|
||||
|
||||
|
||||
2
third_party/3.6/click/types.pyi
vendored
2
third_party/3.6/click/types.pyi
vendored
@@ -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
|
||||
|
||||
2
third_party/3.6/click/utils.pyi
vendored
2
third_party/3.6/click/utils.pyi
vendored
@@ -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