aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-10-27 16:23:20 -0400
committerRapptz <[email protected]>2015-10-27 16:23:20 -0400
commita0073c734e16c2c060d62c2ff6c8d129b90077db (patch)
tree54ec26b0c6a8b14ffafbf38fce1208d28fee1085 /discord/client.py
parentRemove the name from logging. (diff)
downloaddiscord.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.py3
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