From fb02191b80972a9cf7c3baa765cb3aa84c6f1cfa Mon Sep 17 00:00:00 2001 From: NCPlayz Date: Sat, 16 Mar 2019 21:43:55 +0000 Subject: Organise documentation --- discord/calls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'discord/calls.py') 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: -- cgit v1.2.3