We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 977408a commit 93a6ef7Copy full SHA for 93a6ef7
django-stubs/dispatch/dispatcher.pyi
@@ -26,7 +26,7 @@ class Signal:
26
async def asend(self, sender: Any, **named: Any) -> list[tuple[Callable, str | None]]: ...
27
def send_robust(self, sender: Any, **named: Any) -> list[tuple[Callable, Exception | Any]]: ...
28
async def asend_robust(self, sender: Any, **named: Any) -> list[tuple[Callable, Exception | Any]]: ...
29
- def _live_receivers(self, sender: Any) -> list[Callable]: ...
+ def _live_receivers(self, sender: Any) -> tuple[list[Callable[..., Any]], list[Callable[..., Any]]]: ...
30
31
_F = TypeVar("_F", bound=Callable[..., Any])
32
0 commit comments