diff options
| -rw-r--r-- | bot/cogs/bot.py | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index a29aff9d5..1aa335388 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -8,9 +8,9 @@ from discord.ext.commands import AutoShardedBot, Context, command, group  from dulwich.repo import Repo -from bot.constants import (DEVTEST_CHANNEL, HELP1_CHANNEL, HELP2_CHANNEL, -                           HELP3_CHANNEL, PYTHON_CHANNEL, PYTHON_GUILD, -                           VERIFIED_ROLE) +from bot.constants import (BOT_CHANNEL, DEVTEST_CHANNEL, HELP1_CHANNEL, +                           HELP2_CHANNEL, HELP3_CHANNEL, PYTHON_CHANNEL, +                           PYTHON_GUILD, VERIFIED_ROLE)  from bot.decorators import with_role @@ -27,7 +27,8 @@ class Bot:                                    HELP2_CHANNEL: 0,                                    HELP3_CHANNEL: 0,                                    PYTHON_CHANNEL: 0, -                                  DEVTEST_CHANNEL: 0 +                                  DEVTEST_CHANNEL: 0, +                                  BOT_CHANNEL: 0          }  # noqa. E124      @group(invoke_without_command=True, name="bot", hidden=True) | 
