Files
Morgan Bartholomew b15197f935 [python] move bundled django stubs for free mode
GitOrigin-RevId: 2c4b350f4ca7a0e4dec920eb6848d0962c58ba62
2025-06-10 08:41:22 +00:00

10 lines
230 B
Python

from collections.abc import Callable
from typing import TypeVar, overload
_C = TypeVar("_C", bound=Callable)
@overload
def async_unsafe(message: str) -> Callable[[_C], _C]: ...
@overload
def async_unsafe(message: _C) -> _C: ...