aboutsummaryrefslogtreecommitdiff
path: root/code/cogs/nowplaying.py
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-10-31 00:26:00 -0500
committerParker <contact@pkrm.dev>2024-10-31 00:26:00 -0500
commit70e612882d1093b133d13302dccfba6aa2778474 (patch)
tree6b26a4dc377ccf209c37eabf673d6031fdc10987 /code/cogs/nowplaying.py
parentc1b229f34c010108b0e7eb92de2102dfc07ae70c (diff)
`black --line-length 79`
Diffstat (limited to 'code/cogs/nowplaying.py')
-rw-r--r--code/cogs/nowplaying.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/code/cogs/nowplaying.py b/code/cogs/nowplaying.py
index 91c946d..89d9ee2 100644
--- a/code/cogs/nowplaying.py
+++ b/code/cogs/nowplaying.py
@@ -27,7 +27,11 @@ class NowPlaying(commands.Cog):
embed = discord.Embed(
title="Now Playing 🎶",
- description=f"**[{player.current.title}]({player.current.uri})** by {player.current.author}\n{f'` {time_in}/{total_duration} `'}\n\nQueued by: {player.current.requester.mention}",
+ description=(
+ f"**[{player.current.title}]({player.current.uri})** by"
+ f" {player.current.author}\n{f'` {time_in}/{total_duration} `'}\n\nQueued"
+ f" by: {player.current.requester.mention}"
+ ),
color=BOT_COLOR,
)
embed.set_thumbnail(url=player.current.artwork_url)