aboutsummaryrefslogtreecommitdiffstats
path: root/dev/bot/__init__.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2022-11-05 14:15:11 +0000
committerGravatar GitHub <[email protected]>2022-11-05 14:15:11 +0000
commit3f55e7149a3197b7fa41fcf7dc7df47a3a209cfd (patch)
tree11d77db3a48d8226bc1cd14cb18a21d2423b6352 /dev/bot/__init__.py
parentUse New Static Build Site API (#122) (diff)
parentAdd six as a dev dep (diff)
Merge pull request #157 from python-discord/prepare-for-pypi-releasev9.0.0
Prepare for pypi release
Diffstat (limited to 'dev/bot/__init__.py')
-rw-r--r--dev/bot/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/bot/__init__.py b/dev/bot/__init__.py
index 71871209..6ee1ae47 100644
--- a/dev/bot/__init__.py
+++ b/dev/bot/__init__.py
@@ -3,7 +3,7 @@ import logging
import os
import sys
-import botcore
+import pydis_core
if os.name == "nt":
# Change the event loop policy on Windows to avoid exceptions on exit
@@ -15,7 +15,7 @@ logging.getLogger().setLevel(logging.DEBUG)
logging.getLogger("discord").setLevel(logging.ERROR)
-class Bot(botcore.BotBase):
+class Bot(pydis_core.BotBase):
"""Sample Bot implementation."""
async def setup_hook(self) -> None: