Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit d37f3b3

Browse files
committed
Remove unnecessary f-string
1 parent 7e948f5 commit d37f3b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wavelink/player.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ async def move_to(
556556
You tried to connect this player without an appropriate guild.
557557
"""
558558
if not self.guild:
559-
raise InvalidChannelStateException(f"Player tried to move without a valid guild.")
559+
raise InvalidChannelStateException("Player tried to move without a valid guild.")
560560

561561
self._connection_event.clear()
562562
voice: discord.VoiceState | None = self.guild.me.voice

0 commit comments

Comments
 (0)