aboutsummaryrefslogtreecommitdiffstats
path: root/arthur
diff options
context:
space:
mode:
authorGravatar Bradley Reynolds <[email protected]>2023-02-09 17:58:11 -0600
committerGravatar Bradley Reynolds <[email protected]>2023-02-09 18:17:51 -0600
commit333b42438d6c2ff7791acf837272ef871fdf6b42 (patch)
tree53d10ecd87c952c63a829a8da0e42eefbc2317c7 /arthur
parentMerge pull request #37 from python-discord/rule-refresh-command (diff)
bump pydis_core to 9.4.1
Signed-off-by: Bradley Reynolds <[email protected]>
Diffstat (limited to 'arthur')
-rw-r--r--arthur/__init__.py2
-rw-r--r--arthur/bot.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/arthur/__init__.py b/arthur/__init__.py
index c2c5154..4f66dcd 100644
--- a/arthur/__init__.py
+++ b/arthur/__init__.py
@@ -5,7 +5,7 @@ from functools import partial
from typing import TYPE_CHECKING
import loguru
-from botcore.utils import apply_monkey_patches
+from pydis_core.utils import apply_monkey_patches
if TYPE_CHECKING:
from arthur.bot import KingArthur
diff --git a/arthur/bot.py b/arthur/bot.py
index 2220db6..d7ccd8e 100644
--- a/arthur/bot.py
+++ b/arthur/bot.py
@@ -2,11 +2,11 @@
from pathlib import Path
from typing import Any, Union
-from botcore import BotBase
-from botcore.utils import scheduling
from discord import Interaction, Member, User
from discord.ext import commands
from kubernetes_asyncio import config
+from pydis_core import BotBase
+from pydis_core.utils import scheduling
from arthur import exts, logger
from arthur.config import CONFIG