diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/watchchannels/talentpool.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/cogs/watchchannels/talentpool.py b/bot/cogs/watchchannels/talentpool.py index c5621ae18..a6df84c23 100644 --- a/bot/cogs/watchchannels/talentpool.py +++ b/bot/cogs/watchchannels/talentpool.py @@ -227,7 +227,7 @@ class TalentPool(WatchChannel, Cog, name="Talentpool"):          log.info(f"Ending nomination: {user_id=} {reason=}") -        [nomination] = active_nomination +        nomination = active_nomination[0]          await self.bot.api_client.patch(              f"{self.api_endpoint}/{nomination['id']}",              json={'end_reason': reason, 'active': False} | 
