diff options
| author | NCPlayz <[email protected]> | 2019-03-16 21:43:55 +0000 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-03-19 08:24:42 -0400 |
| commit | fb02191b80972a9cf7c3baa765cb3aa84c6f1cfa (patch) | |
| tree | 7a0a5c9aaa5cc5bac26fc51caf4fdffbaee64c26 /discord/calls.py | |
| parent | Take back ownership of files from aiohttp for retrying requests. (diff) | |
| download | discord.py-fb02191b80972a9cf7c3baa765cb3aa84c6f1cfa.tar.xz discord.py-fb02191b80972a9cf7c3baa765cb3aa84c6f1cfa.zip | |
Organise documentation
Diffstat (limited to 'discord/calls.py')
| -rw-r--r-- | discord/calls.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/calls.py b/discord/calls.py index 8b7f8bed..596ac90a 100644 --- a/discord/calls.py +++ b/discord/calls.py @@ -53,7 +53,7 @@ class CallMessage: @property def call_ended(self): - """:obj:`bool`: Indicates if the call has ended.""" + """:class:`bool`: Indicates if the call has ended.""" return self.ended_timestamp is not None @property @@ -87,7 +87,7 @@ class GroupCall: ----------- call: :class:`CallMessage` The call message associated with this group call. - unavailable: :obj:`bool` + unavailable: :class:`bool` Denotes if this group call is unavailable. ringing: List[:class:`User`] A list of users that are currently being rung to join the call. @@ -122,7 +122,7 @@ class GroupCall: @property def connected(self): - """A property that returns the :obj:`list` of :class:`User` that are currently in this call.""" + """A property that returns the :class:`list` of :class:`User` that are currently in this call.""" ret = [u for u in self.channel.recipients if self.voice_state_for(u) is not None] me = self.channel.me if self.voice_state_for(me) is not None: |