diff options
| author | Tobotimus <[email protected]> | 2018-01-06 17:21:56 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-01-06 17:23:59 -0500 |
| commit | 3112e1c17e7859adf6d13ed844f4c636b4bc30d8 (patch) | |
| tree | 70d7aafca549a8c245ee4fdab774e1ab5302d531 /discord/reaction.py | |
| parent | [commands] Fix MissingRequiredArgument param handling (diff) | |
| download | discord.py-3112e1c17e7859adf6d13ed844f4c636b4bc30d8.tar.xz discord.py-3112e1c17e7859adf6d13ed844f4c636b4bc30d8.zip | |
Add intersphinx
Diffstat (limited to 'discord/reaction.py')
| -rw-r--r-- | discord/reaction.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/discord/reaction.py b/discord/reaction.py index 5c7c3620..2af74789 100644 --- a/discord/reaction.py +++ b/discord/reaction.py @@ -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): |