aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts
diff options
context:
space:
mode:
authorGravatar Amrou Bellalouna <[email protected]>2022-12-28 23:33:05 +0100
committerGravatar GitHub <[email protected]>2022-12-28 22:33:05 +0000
commit7aefa4e6d418bc70327d6e409b760463f0de432d (patch)
tree0a279cb383eabf7c0870da99909f2c5081e27fc7 /bot/exts
parentBump pre-commit from 2.20.0 to 2.21.0 (#1178) (diff)
Bump botcore version (#1180)
Co-authored-by: Amrou Bellalouna <[email protected]>
Diffstat (limited to 'bot/exts')
-rw-r--r--bot/exts/core/extensions.py2
-rw-r--r--bot/exts/fun/fun.py2
-rw-r--r--bot/exts/fun/game.py2
-rw-r--r--bot/exts/utilities/logging.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/bot/exts/core/extensions.py b/bot/exts/core/extensions.py
index 5b958c02..1d22cf37 100644
--- a/bot/exts/core/extensions.py
+++ b/bot/exts/core/extensions.py
@@ -4,10 +4,10 @@ from collections.abc import Mapping
from enum import Enum
from typing import Optional
-from botcore.utils._extensions import unqualify
from discord import Colour, Embed
from discord.ext import commands
from discord.ext.commands import Context, group
+from pydis_core.utils._extensions import unqualify
from bot import exts
from bot.bot import Bot
diff --git a/bot/exts/fun/fun.py b/bot/exts/fun/fun.py
index 8056b033..16279dd7 100644
--- a/bot/exts/fun/fun.py
+++ b/bot/exts/fun/fun.py
@@ -6,10 +6,10 @@ from pathlib import Path
from typing import Literal
import pyjokes
-from botcore.utils.commands import clean_text_or_reply
from discord import Embed
from discord.ext import commands
from discord.ext.commands import BadArgument, Cog, Context
+from pydis_core.utils.commands import clean_text_or_reply
from bot.bot import Bot
from bot.constants import Client, Colours, Emojis
diff --git a/bot/exts/fun/game.py b/bot/exts/fun/game.py
index 4e01444e..a8b0b3a0 100644
--- a/bot/exts/fun/game.py
+++ b/bot/exts/fun/game.py
@@ -7,10 +7,10 @@ from enum import IntEnum
from typing import Any, Optional
from aiohttp import ClientSession
-from botcore.utils import scheduling
from discord import Embed
from discord.ext import tasks
from discord.ext.commands import Cog, Context, group
+from pydis_core.utils import scheduling
from bot.bot import Bot
from bot.constants import STAFF_ROLES, Tokens
diff --git a/bot/exts/utilities/logging.py b/bot/exts/utilities/logging.py
index 83b7025f..00febc2c 100644
--- a/bot/exts/utilities/logging.py
+++ b/bot/exts/utilities/logging.py
@@ -1,5 +1,5 @@
-from botcore.utils.logging import get_logger
from discord.ext.commands import Cog
+from pydis_core.utils.logging import get_logger
from bot import constants
from bot.bot import Bot