aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadir Chowdhury <[email protected]>2021-04-15 13:04:24 +0100
committerGitHub <[email protected]>2021-04-15 08:04:24 -0400
commit5ea5f32479ddaab8e149c5bb755a909c3f926854 (patch)
tree74bcb9457e1b314ef1d6396a82792e36ba46207a
parentAdd SystemChannelFlags.guild_reminder_notifications (diff)
downloaddiscord.py-5ea5f32479ddaab8e149c5bb755a909c3f926854.tar.xz
discord.py-5ea5f32479ddaab8e149c5bb755a909c3f926854.zip
[commands] Fix missing `re` import in Context
-rw-r--r--discord/ext/commands/context.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py
index 3b938469..e9c3a168 100644
--- a/discord/ext/commands/context.py
+++ b/discord/ext/commands/context.py
@@ -24,6 +24,7 @@ DEALINGS IN THE SOFTWARE.
import discord.abc
import discord.utils
+import re
__all__ = (
'Context',