(self, *args: P.args, **kwargs: P.kwargs)
| 86 | super().disconnect(receiver) |
| 87 | |
| 88 | async def send(self, *args: P.args, **kwargs: P.kwargs) -> None: |
| 89 | await asyncio.gather( |
| 90 | *[ |
| 91 | aws |
| 92 | for aws in super().notify(*args, **kwargs) |
| 93 | if aws is not None and inspect.isawaitable(aws) |
| 94 | ] |
| 95 | ) |
| 96 | |
| 97 | |
| 98 | # noinspection PyPep8Naming |