mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-27 05:12:10 +08:00
Add missing Dict imports.
This commit is contained in:
2
third_party/2/pymssql.pyi
vendored
2
third_party/2/pymssql.pyi
vendored
@@ -1,6 +1,6 @@
|
||||
from datetime import datetime, date, time
|
||||
|
||||
from typing import Any, Tuple, Iterable, List, Optional, Union, Sequence
|
||||
from typing import Any, Dict, Tuple, Iterable, List, Optional, Union, Sequence
|
||||
|
||||
Scalar = Union[int, float, str, datetime, date, time]
|
||||
Result = Union[Tuple[Scalar, ...], Dict[str, Scalar]]
|
||||
|
||||
2
third_party/2/six/__init__.pyi
vendored
2
third_party/2/six/__init__.pyi
vendored
@@ -4,7 +4,7 @@ from __future__ import print_function
|
||||
|
||||
import types
|
||||
from typing import (
|
||||
Any, AnyStr, Callable, Iterable, Mapping, Optional,
|
||||
Any, AnyStr, Callable, Dict, Iterable, Mapping, Optional,
|
||||
Pattern, Tuple, TypeVar, Union, overload, ValuesView, KeysView, ItemsView
|
||||
)
|
||||
import typing
|
||||
|
||||
2
third_party/2and3/markupsafe/__init__.pyi
vendored
2
third_party/2and3/markupsafe/__init__.pyi
vendored
@@ -4,7 +4,7 @@
|
||||
|
||||
import sys
|
||||
|
||||
from typing import Any, Callable, Iterable, List, Optional, Text, Tuple, Union
|
||||
from typing import Any, Callable, Dict, Iterable, List, Optional, Text, Tuple, Union
|
||||
from collections import Mapping
|
||||
from markupsafe._compat import text_type
|
||||
import string
|
||||
|
||||
2
third_party/3.6/click/decorators.pyi
vendored
2
third_party/3.6/click/decorators.pyi
vendored
@@ -1,4 +1,4 @@
|
||||
from typing import Any, Callable, List, TypeVar, Union
|
||||
from typing import Any, Callable, Dict, List, TypeVar, Union
|
||||
|
||||
from click.core import Command, Group, Argument, Option, Parameter, Context
|
||||
from click.types import ParamType
|
||||
|
||||
Reference in New Issue
Block a user