diff options
| author | 2021-08-03 18:29:57 +0100 | |
|---|---|---|
| committer | 2021-08-03 18:29:57 +0100 | |
| commit | 5057ff6058c6cdaf4c1ac91544779f615d0e4d39 (patch) | |
| tree | 3144e797fe747616c32c39210d276eedbac0759f | |
| parent | Add check for redundant change (diff) | |
Add comment on RedisCache
| -rw-r--r-- | bot/exts/recruitment/talentpool/_cog.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py index e7ad314e8..80bd48534 100644 --- a/bot/exts/recruitment/talentpool/_cog.py +++ b/bot/exts/recruitment/talentpool/_cog.py @@ -27,6 +27,8 @@ log = logging.getLogger(__name__) class TalentPool(WatchChannel, Cog, name="Talentpool"): """Relays messages of helper candidates to a watch channel to observe them.""" + # RedisCache[str, bool] + # Can contain a single key, "autoreview_enabled", with the value a bool indicating if autoreview is enabled. talentpool_settings = RedisCache() def __init__(self, bot: Bot) -> None: |