aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoName <[email protected]>2021-04-16 20:51:02 +0900
committerRapptz <[email protected]>2021-05-01 10:27:12 -0400
commit87dd046c32ca8670f74fe1181a767915dea1e263 (patch)
tree90a5b0e0cf68ba1029fceb16f290b066b48b010e
parent[docs] Fix various unresolved references (diff)
downloaddiscord.py-87dd046c32ca8670f74fe1181a767915dea1e263.tar.xz
discord.py-87dd046c32ca8670f74fe1181a767915dea1e263.zip
Add periods to sticker docs
-rw-r--r--discord/sticker.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/discord/sticker.py b/discord/sticker.py
index d94d1644..4096103c 100644
--- a/discord/sticker.py
+++ b/discord/sticker.py
@@ -30,7 +30,7 @@ from .utils import snowflake_time
from .enums import StickerType, try_enum
class Sticker(Hashable):
- """Represents a sticker
+ """Represents a sticker.
.. versionadded:: 1.6
@@ -38,34 +38,34 @@ class Sticker(Hashable):
.. describe:: str(x)
- Returns the name of the sticker
+ Returns the name of the sticker.
.. describe:: x == y
- Checks if the sticker is equal to another sticker
+ Checks if the sticker is equal to another sticker.
.. describe:: x != y
- Checks if the sticker is not equal to another sticker
+ Checks if the sticker is not equal to another sticker.
Attributes
----------
name: :class:`str`
- The sticker's name
+ The sticker's name.
id: :class:`int`
- The id of the sticker
+ The id of the sticker.
description: :class:`str`
- The description of the sticker
+ The description of the sticker.
pack_id: :class:`int`
- The id of the sticker's pack
+ The id of the sticker's pack.
format: :class:`StickerType`
- The format for the sticker's image
+ The format for the sticker's image.
image: :class:`str`
- The sticker's image
+ The sticker's image.
tags: List[:class:`str`]
- A list of tags for the sticker
+ A list of tags for the sticker.
preview_image: Optional[:class:`str`]
- The sticker's preview asset hash
+ The sticker's preview asset hash.
"""
__slots__ = ('_state', 'id', 'name', 'description', 'pack_id', 'format', 'image', 'tags', 'preview_image')
@@ -101,7 +101,7 @@ class Sticker(Hashable):
"""Returns an :class:`Asset` for the sticker's image.
.. note::
- This will return ``None`` if the format is ``StickerType.lottie``
+ This will return ``None`` if the format is ``StickerType.lottie``.
Returns
-------