From d37f3b38f36c645e48f7a5a99380847bdae1edd7 Mon Sep 17 00:00:00 2001 From: EvieePy Date: Tue, 28 Nov 2023 06:52:29 +1000 Subject: [PATCH] Remove unnecessary f-string --- wavelink/player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wavelink/player.py b/wavelink/player.py index c8870ddd..6d0fb59a 100644 --- a/wavelink/player.py +++ b/wavelink/player.py @@ -556,7 +556,7 @@ async def move_to( You tried to connect this player without an appropriate guild. """ if not self.guild: - raise InvalidChannelStateException(f"Player tried to move without a valid guild.") + raise InvalidChannelStateException("Player tried to move without a valid guild.") self._connection_event.clear() voice: discord.VoiceState | None = self.guild.me.voice