diff options
author | 2020-10-04 22:47:16 -0400 | |
---|---|---|
committer | 2020-10-04 22:47:16 -0400 | |
commit | b907c4cc6e943904e506ec49d3a28d98e9073625 (patch) | |
tree | 7e127cc55564c49436672b712992af44d04e08c7 /bot/bot.py | |
parent | Verify channel constants on startup (diff) |
Add docstring to check_channels
Diffstat (limited to 'bot/bot.py')
-rw-r--r-- | bot/bot.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -150,6 +150,7 @@ class SeasonalBot(commands.Bot): return True async def check_channels(self) -> None: + """Verifies that all channel constants refer to channels which exist.""" await self.wait_until_guild_available() all_channels = set(self.get_all_channels()) for name, channel_id in vars(Channels).items(): |