officereso 5e30522499 Renamed Modules.serverRaidAutomod.py to Modules.automod.
Changed virenv to support conda.

Signed-off-by: officereso <qrs01@snowtx.com>
2019-04-19 22:18:49 -05:00

19 lines
325 B
Python

from typing import Any, Generic, TypeVar
from aiohttp.frozenlist import FrozenList
__all__ = ('Signal',)
_T = TypeVar('_T')
class Signal(FrozenList[_T], Generic[_T]):
def __init__(self, owner: Any) -> None: ...
def __repr__(self) -> str: ...
async def send(self, *args: Any, **kwargs: Any) -> None: ...