aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2021-08-30 22:46:26 +0100
committerGravatar Chris Lovering <[email protected]>2021-08-30 22:46:26 +0100
commit5ca1fec1e9a2bb767863701bee1ffcad729331ec (patch)
tree146986e21cf07c62cf0657e3ffad9526f3256ecb
parentuse global logger in talent pool, over a self var that has been deleted (diff)
Rename list nominated user command for clarity
-rw-r--r--bot/exts/recruitment/talentpool/_cog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py
index f932fc003..6dc36058b 100644
--- a/bot/exts/recruitment/talentpool/_cog.py
+++ b/bot/exts/recruitment/talentpool/_cog.py
@@ -137,9 +137,9 @@ class TalentPool(Cog, name="Talentpool"):
The optional kwarg `update_cache` can be used to update the user
cache using the API before listing the users.
"""
- await self.list_users(ctx, oldest_first=oldest_first, update_cache=update_cache)
+ await self.list_nominated_users(ctx, oldest_first=oldest_first, update_cache=update_cache)
- async def list_users(
+ async def list_nominated_users(
self,
ctx: Context,
oldest_first: bool = False,