diff options
| author | 2021-04-01 16:46:58 +0100 | |
|---|---|---|
| committer | 2021-04-01 16:46:58 +0100 | |
| commit | 15523ae20ded473c56ca4cad18965b45833e5604 (patch) | |
| tree | 819ab8e7075e9f49cb19617c57cf847054af8c96 | |
| parent | Sprinkle some logging into the Stream cog (diff) | |
Describe redis cache var better in stream cog
| -rw-r--r-- | bot/exts/moderation/stream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/stream.py b/bot/exts/moderation/stream.py index 87d3a345c..f2e34e910 100644 --- a/bot/exts/moderation/stream.py +++ b/bot/exts/moderation/stream.py @@ -18,7 +18,7 @@ class Stream(commands.Cog): """Grant and revoke streaming permissions from users.""" # Stores tasks to remove streaming permission - # User id : timestamp relation + # RedisCache[discord.Member.id, UtcPosixTimestamp] task_cache = RedisCache() def __init__(self, bot: Bot): |