aboutsummaryrefslogtreecommitdiffstats
path: root/dev/bot/__init__.py
diff options
context:
space:
mode:
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: