diff options
| author | Rapptz <[email protected]> | 2017-01-25 05:58:06 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-25 05:58:15 -0500 |
| commit | 62f43889c09ef256e8a3ba4dc0100a72fb480fb4 (patch) | |
| tree | a44f19740787a65089717c0ec691a01c76a47478 /discord/client.py | |
| parent | Remove Client.__getattr__ and Client.__setattr__ shims. (diff) | |
| download | discord.py-62f43889c09ef256e8a3ba4dc0100a72fb480fb4.tar.xz discord.py-62f43889c09ef256e8a3ba4dc0100a72fb480fb4.zip | |
Remove unused ChannelPermissions namedtuple.
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/discord/client.py b/discord/client.py index 209b5bfe..d2819ce2 100644 --- a/discord/client.py +++ b/discord/client.py @@ -66,9 +66,6 @@ class WaitForType(enum.Enum): message = 0 reaction = 1 -ChannelPermissions = namedtuple('ChannelPermissions', 'target overwrite') -ChannelPermissions.__new__.__defaults__ = (PermissionOverwrite(),) - class Client: """Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API. |