File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
stubs/aiofiles/aiofiles/threadpool Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ from _typeshed import (
99from asyncio import AbstractEventLoop
1010from collections .abc import Callable
1111from concurrent .futures import Executor
12- from typing import Literal , overload
12+ from functools import _SingleDispatchCallable
13+ from typing import Any , Literal , overload
1314from typing_extensions import TypeAlias
1415
1516from ..base import AiofilesContextManager
@@ -98,6 +99,8 @@ def open(
9899 executor : Executor | None = None ,
99100) -> AiofilesContextManager [_UnknownAsyncBinaryIO ]: ...
100101
102+ wrap : _SingleDispatchCallable [Any ]
103+
101104stdin : AsyncTextIndirectIOWrapper
102105stdout : AsyncTextIndirectIOWrapper
103106stderr : AsyncTextIndirectIOWrapper
You can’t perform that action at this time.
0 commit comments