aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/help_channels.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py
index 2710e981b..67bd1ab35 100644
--- a/bot/cogs/help_channels.py
+++ b/bot/cogs/help_channels.py
@@ -99,8 +99,8 @@ class HelpChannels(Scheduler, commands.Cog):
self.in_use_category: discord.CategoryChannel = None
self.dormant_category: discord.CategoryChannel = None
- self.channel_queue: asyncio.Queue = None
- self.name_queue: deque = None
+ self.channel_queue: asyncio.Queue[discord.TextChannel] = None
+ self.name_queue: t.Deque[str] = None
self.ready = asyncio.Event()
self.on_message_lock = asyncio.Lock()