mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-07 02:10:59 +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
|
||||
|
||||
Reference in New Issue
Block a user