diff options
author | 2022-01-09 15:46:20 -0500 | |
---|---|---|
committer | 2022-01-09 15:46:20 -0500 | |
commit | 351a5ffe2ef259ae98937a251c4c89ca8d46104f (patch) | |
tree | 6f3a27bc61a25e240d01df4dd843b4a775862f7f | |
parent | user mention for editing reason works now (diff) |
unnecessary fetching of user
-rw-r--r-- | bot/exts/recruitment/talentpool/_cog.py | 2 |
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') |