diff options
author | 2022-12-28 23:33:05 +0100 | |
---|---|---|
committer | 2022-12-28 22:33:05 +0000 | |
commit | 7aefa4e6d418bc70327d6e409b760463f0de432d (patch) | |
tree | 0a279cb383eabf7c0870da99909f2c5081e27fc7 /bot/__main__.py | |
parent | Bump 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/__main__.py')
-rw-r--r-- | bot/__main__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index 9cf63dc5..d39e93bf 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -4,8 +4,8 @@ import logging import aiohttp import discord from async_rediscache import RedisSession -from botcore import StartupError from discord.ext import commands +from pydis_core import StartupError from redis import RedisError import bot @@ -40,7 +40,7 @@ async def test_bot_in_ci(bot: Bot) -> None: This is to ensure that all extensions can at least be imported and have a setup function within our CI. """ - from botcore.utils._extensions import walk_extensions + from pydis_core.utils._extensions import walk_extensions from bot import exts |