diff options
author | 2023-03-04 15:25:46 +0000 | |
---|---|---|
committer | 2023-03-04 15:25:46 +0000 | |
commit | cb8706007ed3c8f8d2b8412541ec9f8e2f813df5 (patch) | |
tree | 7180919adbbc729cf365555db6b1871ed36970e6 | |
parent | Split default nomination listing into groups (diff) |
Make show_* arguments to list_nominations keyword only
-rw-r--r-- | bot/exts/recruitment/talentpool/_cog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py index b92afdbcc..f3716140a 100644 --- a/bot/exts/recruitment/talentpool/_cog.py +++ b/bot/exts/recruitment/talentpool/_cog.py @@ -264,6 +264,7 @@ class TalentPool(Cog, name="Talentpool"): ctx: Context, nominations: list[Nomination], messages_per_user: dict[int, int], + *, show_reviewed: bool = False, show_inactive: bool = False, ) -> list[str]: |