aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/context.py
diff options
context:
space:
mode:
authorNadir Chowdhury <[email protected]>2021-04-07 07:30:32 +0100
committerGitHub <[email protected]>2021-04-07 02:30:32 -0400
commit89456022cf952a0d094d3ed438e279db02535632 (patch)
tree216671c8bfeb6c861236dc42ba82a7b08cf52f69 /discord/ext/commands/context.py
parentAdd Embed.__bool__ (diff)
downloaddiscord.py-89456022cf952a0d094d3ed438e279db02535632.tar.xz
discord.py-89456022cf952a0d094d3ed438e279db02535632.zip
Add `__all__` to remaining modules
Diffstat (limited to 'discord/ext/commands/context.py')
-rw-r--r--discord/ext/commands/context.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py
index 5e83b1ab..cbd28597 100644
--- a/discord/ext/commands/context.py
+++ b/discord/ext/commands/context.py
@@ -25,6 +25,10 @@ DEALINGS IN THE SOFTWARE.
import discord.abc
import discord.utils
+__all__ = (
+ 'Context',
+)
+
class Context(discord.abc.Messageable):
r"""Represents the context in which a command is being invoked under.