diff options
Diffstat (limited to 'bot/exts/halloween/candy_collection.py')
-rw-r--r-- | bot/exts/halloween/candy_collection.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bot/exts/halloween/candy_collection.py b/bot/exts/halloween/candy_collection.py index f3f8137e..835ca8cb 100644 --- a/bot/exts/halloween/candy_collection.py +++ b/bot/exts/halloween/candy_collection.py @@ -151,12 +151,10 @@ class CandyCollection(commands.Cog): author: discord.Member, channel: discord.TextChannel ) -> None: - """An alternative spooky message sent when user has no candies in the - collection""" - + """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; " - f"I tried to take your candies but you had non to begin with!") + "I tried to take your candies but you had non to begin with!") await channel.send(embed=embed) def save_to_json(self) -> None: |