diff options
| author | Rapptz <[email protected]> | 2016-01-08 14:03:11 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-01-08 14:04:58 -0500 |
| commit | a1a47c6f38b46fe2d75276cff037048ee9acfdc4 (patch) | |
| tree | 8460f50631d97e0cc6c714c20ee1305542238c57 /discord/client.py | |
| parent | Document how Client.run should be the last function to call. (diff) | |
| download | discord.py-a1a47c6f38b46fe2d75276cff037048ee9acfdc4.tar.xz discord.py-a1a47c6f38b46fe2d75276cff037048ee9acfdc4.zip | |
Document the breaking change with the new dictionary storage change.
Since the only things dict views support are iteration we should
advise people who want the old behaviour to change it to a list.
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/client.py b/discord/client.py index 4c06dcbf..77b71466 100644 --- a/discord/client.py +++ b/discord/client.py @@ -88,9 +88,9 @@ class Client: Represents the current voice connection. None if you are not connected to a voice channel. To connect to voice use :meth:`join_voice_channel`. To query the voice connection state use :meth:`is_voice_connected`. - servers : list of :class:`Server` + servers : iterable of :class:`Server` The servers that the connected client is a member of. - private_channels : list of :class:`PrivateChannel` + private_channels : iterable of :class:`PrivateChannel` The private channels that the connected client is participating on. messages A deque_ of :class:`Message` that the client has received from all |