From eb10679be3e53f73cf8b34789971000ec597c10a Mon Sep 17 00:00:00 2001 From: kosayoda Date: Mon, 5 Aug 2019 21:32:31 +0800 Subject: Move bot out of constants.py to bot.py --- bot/constants.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'bot/constants.py') 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) -- cgit v1.2.3