massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / asyncio / threads.pyi
1 import sys
2 from typing import Any, Callable, TypeVar
3
4 _T = TypeVar("_T")
5
6 if sys.version_info >= (3, 9):
7     async def to_thread(__func: Callable[..., _T], *args: Any, **kwargs: Any) -> _T: ...