diff options
| author | Nadir Chowdhury <[email protected]> | 2021-04-15 13:04:24 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-15 08:04:24 -0400 |
| commit | 5ea5f32479ddaab8e149c5bb755a909c3f926854 (patch) | |
| tree | 74bcb9457e1b314ef1d6396a82792e36ba46207a | |
| parent | Add SystemChannelFlags.guild_reminder_notifications (diff) | |
| download | discord.py-5ea5f32479ddaab8e149c5bb755a909c3f926854.tar.xz discord.py-5ea5f32479ddaab8e149c5bb755a909c3f926854.zip | |
[commands] Fix missing `re` import in Context
| -rw-r--r-- | discord/ext/commands/context.py | 1 |
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', |