diff options
author | Parker <contact@pkrm.dev> | 2024-10-31 05:26:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 05:26:36 +0000 |
commit | 5be16a998857d1f14410904a41d052070d5f8776 (patch) | |
tree | 6b26a4dc377ccf209c37eabf673d6031fdc10987 /code/cogs/news.py | |
parent | c1b229f34c010108b0e7eb92de2102dfc07ae70c (diff) | |
parent | 70e612882d1093b133d13302dccfba6aa2778474 (diff) |
Merge pull request #9 from PacketParker/dev
`black --line-length 79`
Diffstat (limited to 'code/cogs/news.py')
-rw-r--r-- | code/cogs/news.py | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/code/cogs/news.py b/code/cogs/news.py index 9013567..434d8b3 100644 --- a/code/cogs/news.py +++ b/code/cogs/news.py @@ -14,23 +14,39 @@ class News(commands.Cog): "Get recent news and updates about the bot" embed = discord.Embed( title="Recent News :newspaper2:", - description="View recent code commits [here](https://github.com/packetparker/guava/commits)\n\u200b", + description=( + "View recent code commits" + " [here](https://github.com/packetparker/guava/commits)\n\u200b" + ), color=BOT_COLOR, ) embed.add_field( name="**Lyrics!**", - value="> You can now get lyrics for the song that is currently playing. Just use the `/lyrics` command! Some songs may not have lyrics available, but the bot will do its best to find them.", + value=( + "> You can now get lyrics for the song that is currently" + " playing. Just use the `/lyrics` command! Some songs may not" + " have lyrics available, but the bot will do its best to find" + " them." + ), ) embed.add_field( name="**Apple Music Support!**", - value="> After some trial and error, you can now play music through Apple Music links. Just paste the link and the bot will do the rest!", + value=( + "> After some trial and error, you can now play music through" + " Apple Music links. Just paste the link and the bot will do" + " the rest!" + ), ) embed.add_field( name="**Autoplay Update**", - value="> Autoplay is now much more stable after a revamp of the previous system. If you experienced short outages recently, this was due to the update. Thank you for your patience!", + value=( + "> Autoplay is now much more stable after a revamp of the" + " previous system. If you experienced short outages recently," + " this was due to the update. Thank you for your patience!" + ), inline=False, ) |