diff options
-rw-r--r-- | bot/exts/holidays/halloween/candy_collection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/halloween/candy_collection.py b/bot/exts/holidays/halloween/candy_collection.py index 61dc8f97..729bbc97 100644 --- a/bot/exts/holidays/halloween/candy_collection.py +++ b/bot/exts/holidays/halloween/candy_collection.py @@ -190,8 +190,8 @@ class CandyCollection(commands.Cog): def get_user_candy_score() -> str: for user_id, score in records: if user_id == ctx.author.id: - return f'{ctx.author.mention}: {score}' - return f'{ctx.author.mention}: 0' + return f"{ctx.author.mention}: {score}" + return f"{ctx.author.mention}: 0" e = discord.Embed(colour=discord.Colour.og_blurple()) e.add_field( |