Skip to content

Commit 073f9f4

Browse files
authored
Use PEP 585 syntax in collections (#7657)
1 parent 97a74bc commit 073f9f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/collections/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if sys.version_info >= (3, 9):
88
from types import GenericAlias
99

1010
if sys.version_info >= (3, 10):
11-
from typing import Callable, Iterable, Iterator, Mapping, MutableMapping, MutableSequence, Reversible, Sequence
11+
from collections.abc import Callable, Iterable, Iterator, Mapping, MutableMapping, MutableSequence, Reversible, Sequence
1212
else:
1313
from _collections_abc import *
1414

0 commit comments

Comments
 (0)