aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-12-12 18:21:39 +1000
committerGravatar GitHub <[email protected]>2019-12-12 18:21:39 +1000
commit10a39501a0835d860188c4605e9dd0f41a28549b (patch)
treef19e98c7977e8f57780225698bfd3ea3438df262 /tests/helpers.py
parentMerge pull request #684 from python-discord/enhancement/644-mute-kicks-voice (diff)
parentUse the AsyncResolver for APIClient and discord.py sessions too (diff)
Subclass Bot (#681)
Subclass Bot
Diffstat (limited to 'tests/helpers.py')
-rw-r--r--tests/helpers.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/helpers.py b/tests/helpers.py
index b2daae92d..5df796c23 100644
--- a/tests/helpers.py
+++ b/tests/helpers.py
@@ -10,7 +10,9 @@ import unittest.mock
from typing import Any, Iterable, Optional
import discord
-from discord.ext.commands import Bot, Context
+from discord.ext.commands import Context
+
+from bot.bot import Bot
for logger in logging.Logger.manager.loggerDict.values():