Added on_typing update event ABC

This commit is contained in:
Cora Cordes 2021-11-20 16:39:36 +01:00
parent c0d38817d4
commit c3e1aaf40f

View File

@ -5,3 +5,6 @@ class OnTypingABC(ABC):
@abstractmethod @abstractmethod
def __init__(self): pass def __init__(self): pass
@abstractmethod
async def on_typing(self, channel: discord.abc.Messageable, user: Union[discord.User, discord.Member], when: datetime): pass