From ac061c31fbb57e1c19378f3f2538dad82772e847 Mon Sep 17 00:00:00 2001 From: Imayhaveborkedit Date: Tue, 25 May 2021 02:22:21 -0400 Subject: [PATCH] Fix default hook signature Since the hook function can be both bound and unbound the bound signature needs to accept an extra argument --- discord/gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/gateway.py b/discord/gateway.py index 077d16d20..5fec87484 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -717,7 +717,7 @@ class DiscordVoiceWebSocket: if hook: self._hook = hook - async def _hook(self, msg): + async def _hook(self, *args): pass async def send_as_json(self, data):