Skip to content

Commit 1991ee2

Browse files
authored
commit 6
1 parent c094f18 commit 1991ee2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

stdlib/collections/__init__.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ from _collections_abc import dict_items, dict_keys, dict_values
33
from _typeshed import SupportsItems, SupportsKeysAndGetItem, SupportsRichComparison, SupportsRichComparisonT
44
from collections.abc import (
55
Callable,
6+
Hashable,
67
ItemsView,
78
Iterable,
89
Iterator,
@@ -23,8 +24,6 @@ if sys.version_info >= (3, 15):
2324
__all__ = ["ChainMap", "Counter", "OrderedDict", "UserDict", "UserList", "UserString", "defaultdict", "deque", "namedtuple"]
2425

2526
_T = TypeVar("_T")
26-
_T1 = TypeVar("_T1")
27-
_T2 = TypeVar("_T2")
2827
_KT = TypeVar("_KT", bound=Hashable)
2928
_VT = TypeVar("_VT")
3029
_KT2 = TypeVar("_KT2")

0 commit comments

Comments
 (0)