diff options
| author | Rapptz <[email protected]> | 2015-10-16 07:13:24 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-10-16 07:48:50 -0400 |
| commit | 411b477a02042ebec9f1a1fe944b114611c40b1b (patch) | |
| tree | d93865a9b4d1539ca03c07f46cb7f9cef9299ba6 /discord/client.py | |
| parent | Handle VOICE_STATE_UPDATE websocket events. (diff) | |
| download | discord.py-411b477a02042ebec9f1a1fe944b114611c40b1b.tar.xz discord.py-411b477a02042ebec9f1a1fe944b114611c40b1b.zip | |
Separate colour tuple into its own class.
Also enumerate all the constant colours that Discord currently
supports.
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py index 2a04bb28..1df0c812 100644 --- a/discord/client.py +++ b/discord/client.py @@ -28,7 +28,8 @@ from . import endpoints from .errors import InvalidEventName, InvalidDestination, GatewayNotFound from .user import User from .channel import Channel, PrivateChannel -from .server import Server, Member, Permissions, Role +from .server import Server, Member +from .role import Role, Permissions from .message import Message from . import utils from .invite import Invite |