diff options
author | 2021-04-20 18:48:12 +0300 | |
---|---|---|
committer | 2021-04-20 18:48:12 +0300 | |
commit | b12666dc4b75146b150c0812c5cb56f4317773ae (patch) | |
tree | 8b8d2311476bbd2db95ee8f0c66317c642ada78b | |
parent | CamelCase the cog name (diff) |
Improve rediscache doc
Co-authored-by: ChrisJL <[email protected]>
-rw-r--r-- | bot/exts/moderation/modpings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/modpings.py b/bot/exts/moderation/modpings.py index 690aa7c68..2f180e594 100644 --- a/bot/exts/moderation/modpings.py +++ b/bot/exts/moderation/modpings.py @@ -17,7 +17,7 @@ log = logging.getLogger(__name__) class ModPings(Cog): """Commands for a moderator to turn moderator pings on and off.""" - # RedisCache[str, str] + # RedisCache[discord.Member.id, 'Naïve ISO 8601 string'] # The cache's keys are mods who have pings off. # The cache's values are the times when the role should be re-applied to them, stored in ISO format. pings_off_mods = RedisCache() |