aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__main__.py
diff options
context:
space:
mode:
authorGravatar kosayoda <[email protected]>2019-08-05 21:32:31 +0800
committerGravatar kosayoda <[email protected]>2019-08-05 21:32:31 +0800
commiteb10679be3e53f73cf8b34789971000ec597c10a (patch)
treec48254484357c46a3e7ccdb8b9d2e12e324d1adb /bot/__main__.py
parentUnify constants file quotation use (diff)
Move bot out of constants.py to bot.py
Diffstat (limited to 'bot/__main__.py')
-rw-r--r--bot/__main__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py
index a3b68ec1..416bca35 100644
--- a/bot/__main__.py
+++ b/bot/__main__.py
@@ -1,6 +1,7 @@
import logging
-from bot.constants import Client, bot
+from bot.bot import bot
+from bot.constants import Client
log = logging.getLogger(__name__)