diff options
| author | Nadir Chowdhury <[email protected]> | 2021-03-13 05:42:25 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-13 00:42:25 -0500 |
| commit | 7d345e8e4e66246c441a8c6154e398bf49ac0b3c (patch) | |
| tree | 88d643c03a74852b28f9ba17a50d58e5c7cd2d3d /discord/calls.py | |
| parent | Fix references to snowflakes being max 21 long (diff) | |
| download | discord.py-7d345e8e4e66246c441a8c6154e398bf49ac0b3c.tar.xz discord.py-7d345e8e4e66246c441a8c6154e398bf49ac0b3c.zip | |
remove trailing whitespace
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 8cc4cdcb..2006b30a 100644 --- a/discord/calls.py +++ b/discord/calls.py @@ -56,7 +56,7 @@ class CallMessage: @property def call_ended(self): """:class:`bool`: Indicates if the call has ended. - + .. deprecated:: 1.7 """ return self.ended_timestamp is not None @@ -64,7 +64,7 @@ class CallMessage: @property def channel(self): r""":class:`GroupChannel`\: The private channel associated with this message. - + .. deprecated:: 1.7 """ return self.message.channel @@ -148,7 +148,7 @@ class GroupCall: @property def channel(self): r""":class:`GroupChannel`\: Returns the channel the group call is in. - + .. deprecated:: 1.7 """ return self.call.channel |