aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-04-01 16:46:58 +0100
committerGravatar Chris <[email protected]>2021-04-01 16:46:58 +0100
commit15523ae20ded473c56ca4cad18965b45833e5604 (patch)
tree819ab8e7075e9f49cb19617c57cf847054af8c96
parentSprinkle some logging into the Stream cog (diff)
Describe redis cache var better in stream cog
-rw-r--r--bot/exts/moderation/stream.py2
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):