aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/ext/commands/context.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py
index 01361821..95996a67 100644
--- a/discord/ext/commands/context.py
+++ b/discord/ext/commands/context.py
@@ -64,9 +64,6 @@ class Context:
nonsense string. If nothing was passed to attempt a call to a
subcommand then this is set to `None`.
"""
- __slots__ = ['message', 'bot', 'args', 'kwargs', 'command', 'view',
- 'invoked_with', 'invoked_subcommand', 'subcommand_passed',
- 'prefix' ]
def __init__(self, **attrs):
self.message = attrs.pop('message', None)