diff options
author | 2022-03-31 20:46:45 +0100 | |
---|---|---|
committer | 2022-04-18 17:44:59 +0100 | |
commit | 047705ac91c2997ccb509ea4e1fb3fad38840412 (patch) | |
tree | 93a1e38cb3b1719b7e2b6eee2b15f21e1a8526a9 /tests/helpers.py | |
parent | Discord.py breaking changes (diff) |
Remove async stats and site api wrapper
We now source them from bot-core, so no need to have them here too.
Diffstat (limited to 'tests/helpers.py')
-rw-r--r-- | tests/helpers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/helpers.py b/tests/helpers.py index 9d4988d23..3e6290e58 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -9,10 +9,10 @@ from typing import Iterable, Optional import discord from aiohttp import ClientSession +from botcore.async_stats import AsyncStatsClient +from botcore.site_api import APIClient from discord.ext.commands import Context -from bot.api import APIClient -from bot.async_stats import AsyncStatsClient from bot.bot import Bot from tests._autospec import autospec # noqa: F401 other modules import it via this module |