aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-11-16 21:34:27 -0500
committerRapptz <[email protected]>2017-01-03 09:51:59 -0500
commit2c50c18ca3ffdc25c0785b8329044ac81a883905 (patch)
tree7a44af21fcbb49431063a99c61e32e91c3ee0170 /discord/client.py
parentRe-add support for embeds. (diff)
downloaddiscord.py-2c50c18ca3ffdc25c0785b8329044ac81a883905.tar.xz
discord.py-2c50c18ca3ffdc25c0785b8329044ac81a883905.zip
Change dict value views into lists.
Diffstat (limited to 'discord/client.py')
-rw-r--r--discord/client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/client.py b/discord/client.py
index 46644546..b760ee83 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -114,13 +114,13 @@ class Client:
-----------
user : Optional[:class:`User`]
Represents the connected client. None if not logged in.
- voice_clients : iterable of :class:`VoiceClient`
+ voice_clients: List[:class:`VoiceClient`]
Represents a list of voice connections. To connect to voice use
:meth:`join_voice_channel`. To query the voice connection state use
:meth:`is_voice_connected`.
- guilds : iterable of :class:`Guild`
+ guilds: List[:class:`Guild`]
The guilds that the connected client is a member of.
- private_channels : iterable of :class:`PrivateChannel`
+ private_channels: List[:class:`abc.PrivateChannel`]
The private channels that the connected client is participating on.
messages
A deque_ of :class:`Message` that the client has received from all