From b5dc9e54a0e0d3d61647c8940a9ed0d731f34759 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Fri, 16 Sep 2022 01:30:43 +0200 Subject: [PATCH] Change VoiceProtocol user callbacks to be pos-only --- discord/voice_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/voice_client.py b/discord/voice_client.py index 8815a3be0..c438b5c0e 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -115,7 +115,7 @@ class VoiceProtocol: self.client: Client = client self.channel: abc.Connectable = channel - async def on_voice_state_update(self, data: GuildVoiceStatePayload) -> None: + async def on_voice_state_update(self, data: GuildVoiceStatePayload, /) -> None: """|coro| An abstract method that is called when the client's voice state @@ -128,7 +128,7 @@ class VoiceProtocol: """ raise NotImplementedError - async def on_voice_server_update(self, data: VoiceServerUpdatePayload) -> None: + async def on_voice_server_update(self, data: VoiceServerUpdatePayload, /) -> None: """|coro| An abstract method that is called when initially connecting to voice.