From 3c91d2163e8b7ae7ff5b6d877c00de79f99f7e00 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 17 Jan 2023 00:48:29 -0500 Subject: [PATCH] Fix overload for on_raw_typing in wait_for --- discord/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/client.py b/discord/client.py index fce4e2900..f0156dd8f 100644 --- a/discord/client.py +++ b/discord/client.py @@ -1266,7 +1266,7 @@ class Client: @overload async def wait_for( self, - event: Literal['on_raw_typing'], + event: Literal['raw_typing'], /, *, check: Optional[Callable[[RawTypingEvent], bool]],