aboutsummaryrefslogtreecommitdiffstats
path: root/bot/bot.py
diff options
context:
space:
mode:
authorGravatar Objectivitix <[email protected]>2021-05-16 15:50:07 -0400
committerGravatar GitHub <[email protected]>2021-05-16 15:50:07 -0400
commit07b5f296bed099d4cde849cfeba3320e3f4aa808 (patch)
tree87b8efa0a3d11d38eb0f77c75e4a42d5033584b9 /bot/bot.py
parentdelete trailing whitespace after docstring (diff)
parentMerge pull request #738 from python-discord/vcokltfre/feat/bookmark-reply (diff)
Merge branch 'main' into main
Diffstat (limited to 'bot/bot.py')
-rw-r--r--bot/bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/bot.py b/bot/bot.py
index 7e495940..b8de97aa 100644
--- a/bot/bot.py
+++ b/bot/bot.py
@@ -101,7 +101,7 @@ class Bot(commands.Bot):
all_channels_ids = [channel.id for channel in self.get_all_channels()]
for name, channel_id in vars(constants.Channels).items():
- if name.startswith('_'):
+ if name.startswith("_"):
continue
if channel_id not in all_channels_ids:
log.error(f'Channel "{name}" with ID {channel_id} missing')