summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsuhas <hi@suhas.one>2023-11-16 23:50:48 -0600
committersuhas <hi@suhas.one>2023-11-16 23:50:48 -0600
commitf39cec9a0773ac41d2c229715175a3bfab65e3d2 (patch)
tree793638ed6d3c1fdbf935d5174f230649a9a855a7
parent97bc8e613f90bb498484c861ec63ea839a48da00 (diff)
downloadqbb-f39cec9a0773ac41d2c229715175a3bfab65e3d2.tar.gz
we do a little string interpolation
-rw-r--r--cogs/stats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/stats.py b/cogs/stats.py
index 54037c2..911d9bf 100644
--- a/cogs/stats.py
+++ b/cogs/stats.py
@@ -22,7 +22,7 @@ class Stats(Cog):
         if stats is None or cb is None:
             embed = Embed(title="No Stats!", description=f"@{person.name} has no stats! Trying using the bot and then running this command", color=Color.red())
             return await ctx.response.send_message(embed=embed)
-        embed = Embed(title="@{person.name}'s qbb stats", description=f"""**Number of correct tossups:** {stats.questions_correct}
+        embed = Embed(title=f"@{person.name}'s qbb stats", description=f"""**Number of correct tossups:** {stats.questions_correct}
         **Number of incorrect tossups:** {stats.questions_incorrect}
         """)
         for cat in category_field_translations.values():