diff options
| author | 2021-03-25 20:30:37 +0000 | |
|---|---|---|
| committer | 2021-03-25 20:30:37 +0000 | |
| commit | ef38220761fa7f7299b2bd853dcd1f6f7cab9646 (patch) | |
| tree | bef418405e33a7be6e2d131be6d57abf7a227390 | |
| parent | Schedule channels just opened using claimant configured idle time (diff) | |
update help channel on_message docstring to reflect unchanged responsibility
| -rw-r--r-- | bot/exts/help_channels/_cog.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index bac17fb2d..a8828348c 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -416,12 +416,7 @@ class HelpChannels(commands.Cog): @commands.Cog.listener() async def on_message(self, message: discord.Message) -> None: - """ - Move an available channel to the In Use category and replace it with a dormant one. - - Update the `last_message_times` cache based on the current timestamp. If the message - author is the claimant of this channel, also update the `claimant_last_message_times` cache. - """ + """Move an available channel to the In Use category and replace it with a dormant one.""" if message.author.bot: return # Ignore messages sent by bots. |