You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
315 B

4 years ago
  1. from typing import Any, Generic, TypeVar
  2. from aiohttp.frozenlist import FrozenList
  3. __all__ = ('Signal',)
  4. _T = TypeVar('_T')
  5. class Signal(FrozenList[_T], Generic[_T]):
  6. def __init__(self, owner: Any) -> None: ...
  7. def __repr__(self) -> str: ...
  8. async def send(self, *args, **kwargs) -> None: ...