Skip to content

Commit e6b0807

Browse files
committed
fix bytestring
1 parent 1176269 commit e6b0807

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

stdlib/_collections_abc.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ from typing import ( # noqa: Y022,Y038,UP035,Y057
77
AsyncIterable as AsyncIterable,
88
AsyncIterator as AsyncIterator,
99
Awaitable as Awaitable,
10+
ByteString as ByteString,
1011
Callable as Callable,
1112
ClassVar,
1213
Collection as Collection,
@@ -61,8 +62,6 @@ __all__ = [
6162
"MutableSequence",
6263
]
6364
if sys.version_info < (3, 15):
64-
from typing import ByteString as ByteString # noqa: Y022,Y038,UP035,Y057,RUF100
65-
6665
__all__ += ["ByteString"]
6766
if sys.version_info >= (3, 12):
6867
__all__ += ["Buffer"]

0 commit comments

Comments
 (0)