mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
10 lines
246 B
Python
10 lines
246 B
Python
import sys
|
|
from typing import Awaitable, TypeVar
|
|
|
|
_T = TypeVar("_T")
|
|
if sys.version_info >= (3, 8):
|
|
def run(main: Awaitable[_T], *, debug: bool | None = ...) -> _T: ...
|
|
|
|
else:
|
|
def run(main: Awaitable[_T], *, debug: bool = ...) -> _T: ...
|