diff options
author | 2021-05-14 12:34:30 -0400 | |
---|---|---|
committer | 2021-05-14 12:34:30 -0400 | |
commit | 92c33d625068b9b39564dbf4fb9f6c1102711955 (patch) | |
tree | 40ce3e18ff8df18cb09ca2c3b2c7f00fa7e5811a /bot/exts/halloween/candy_collection.py | |
parent | chore: Break up the HelpSession.build_pages method (diff) |
chore: Refactor more code to follow our style guide
Diffstat (limited to 'bot/exts/halloween/candy_collection.py')
-rw-r--r-- | bot/exts/halloween/candy_collection.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bot/exts/halloween/candy_collection.py b/bot/exts/halloween/candy_collection.py index 14efa1fb..4afd5913 100644 --- a/bot/exts/halloween/candy_collection.py +++ b/bot/exts/halloween/candy_collection.py @@ -155,8 +155,12 @@ class CandyCollection(commands.Cog): ) -> None: """An alternative spooky message sent when user has no candies in the collection.""" embed = discord.Embed(color=author.color) - embed.set_author(name="Ghosts and Ghouls and Jack o' lanterns at night; " - "I tried to take your candies but you had none to begin with!") + embed.set_author( + name=( + "Ghosts and Ghouls and Jack o' lanterns at night; " + "I tried to take your candies but you had none to begin with!" + ) + ) await channel.send(embed=embed) @in_month(Month.OCTOBER) |