Skip to content

Commit

Permalink
Remove unnecessary f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Nov 27, 2023
1 parent 7e948f5 commit d37f3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wavelink/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d37f3b3

Please sign in to comment.