Add intersphinx

This commit is contained in:
Tobotimus
2018-01-06 17:21:56 -05:00
committed by Rapptz
parent 0ef866a704
commit 3112e1c17e
37 changed files with 267 additions and 268 deletions

View File

@ -54,11 +54,11 @@ class Reaction:
Attributes
-----------
emoji: :class:`Emoji` or str
emoji: :class:`Emoji` or :class:`str`
The reaction emoji. May be a custom emoji, or a unicode emoji.
count: int
count: :class:`int`
Number of times this reaction was made
me: bool
me: :class:`bool`
If the user sent this reaction.
message: :class:`Message`
Message this reaction is for.
@ -73,7 +73,7 @@ class Reaction:
@property
def custom_emoji(self):
"""bool: If this is a custom emoji."""
""":class:`bool`: If this is a custom emoji."""
return not isinstance(self.emoji, str)
def __eq__(self, other):