diff --git a/django-stubs/dispatch/dispatcher.pyi b/django-stubs/dispatch/dispatcher.pyi index 2682d9cb7..bd1e24a38 100644 --- a/django-stubs/dispatch/dispatcher.pyi +++ b/django-stubs/dispatch/dispatcher.pyi @@ -26,7 +26,7 @@ class Signal: async def asend(self, sender: Any, **named: Any) -> list[tuple[Callable, str | None]]: ... def send_robust(self, sender: Any, **named: Any) -> list[tuple[Callable, Exception | Any]]: ... async def asend_robust(self, sender: Any, **named: Any) -> list[tuple[Callable, Exception | Any]]: ... - def _live_receivers(self, sender: Any) -> list[Callable]: ... + def _live_receivers(self, sender: Any) -> tuple[list[Callable], list[Callable]]: ... _F = TypeVar("_F", bound=Callable[..., Any])