diff options
| author | Rapptz <[email protected]> | 2015-10-27 16:23:20 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-10-27 16:23:20 -0400 |
| commit | a0073c734e16c2c060d62c2ff6c8d129b90077db (patch) | |
| tree | 54ec26b0c6a8b14ffafbf38fce1208d28fee1085 /discord/client.py | |
| parent | Remove the name from logging. (diff) | |
| download | discord.py-a0073c734e16c2c060d62c2ff6c8d129b90077db.tar.xz discord.py-a0073c734e16c2c060d62c2ff6c8d129b90077db.zip | |
Split data classes into more files.
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 802c542c..33372b1d 100644 --- a/discord/client.py +++ b/discord/client.py @@ -30,7 +30,8 @@ from . import endpoints from .errors import InvalidEventName, InvalidDestination, GatewayNotFound from .user import User from .channel import Channel, PrivateChannel -from .server import Server, Member +from .server import Server +from .member import Member from .role import Role, Permissions from .message import Message from . import utils |