diff options
| author | 2019-08-05 21:32:31 +0800 | |
|---|---|---|
| committer | 2019-08-05 21:32:31 +0800 | |
| commit | eb10679be3e53f73cf8b34789971000ec597c10a (patch) | |
| tree | c48254484357c46a3e7ccdb8b9d2e12e324d1adb /bot/constants.py | |
| parent | Unify constants file quotation use (diff) | |
Move bot out of constants.py to bot.py
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/bot/constants.py b/bot/constants.py index 8902d918..f46f21d6 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -2,11 +2,9 @@ import logging  from os import environ  from typing import NamedTuple -from bot.bot import SeasonalBot -  __all__ = (      "AdventOfCode", "Channels", "Client", "Colours", "Emojis", "Hacktoberfest", "Roles", -    "Tokens", "ERROR_REPLIES", "bot" +    "Tokens", "ERROR_REPLIES",  )  log = logging.getLogger(__name__) @@ -130,6 +128,3 @@ ERROR_REPLIES = [      "Noooooo!!",      "I can't believe you've done this",  ] - - -bot = SeasonalBot(command_prefix=Client.prefix) | 
