aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Shom770 <[email protected]>2022-01-09 15:46:20 -0500
committerGravatar Shom770 <[email protected]>2022-01-09 15:46:20 -0500
commit351a5ffe2ef259ae98937a251c4c89ca8d46104f (patch)
tree6f3a27bc61a25e240d01df4dd843b4a775862f7f
parentuser mention for editing reason works now (diff)
unnecessary fetching of user
-rw-r--r--bot/exts/recruitment/talentpool/_cog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py
index bbb3196a1..28df8df11 100644
--- a/bot/exts/recruitment/talentpool/_cog.py
+++ b/bot/exts/recruitment/talentpool/_cog.py
@@ -440,7 +440,7 @@ class TalentPool(Cog, name="Talentpool"):
await self.refresh_cache() # Update cache
await ctx.send(
f":white_check_mark: Successfully updated nomination reason"
- f" for {(await self.bot.fetch_user(nomination['user'])).mention}"
+ f" for <@{nomination['user']}>"
)
@nomination_edit_group.command(name='end_reason')