diff options
author | 2021-12-16 20:09:12 +0000 | |
---|---|---|
committer | 2021-12-16 20:09:12 +0000 | |
commit | e48fda5a7ae3509dd0ef7e591fedbf3dab125ba1 (patch) | |
tree | 40a96360678a06b61c6576b0c6e746c7299222dc | |
parent | Merge branch 'main' of https://github.com/python-discord/sir-lancebot (diff) |
Double quotes
-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( |