Add periods to sticker docs

This commit is contained in:
NoName 2021-04-16 20:51:02 +09:00 committed by Rapptz
parent 7d37c3a506
commit 87dd046c32

View File

@ -30,7 +30,7 @@ from .utils import snowflake_time
from .enums import StickerType, try_enum from .enums import StickerType, try_enum
class Sticker(Hashable): class Sticker(Hashable):
"""Represents a sticker """Represents a sticker.
.. versionadded:: 1.6 .. versionadded:: 1.6
@ -38,34 +38,34 @@ class Sticker(Hashable):
.. describe:: str(x) .. describe:: str(x)
Returns the name of the sticker Returns the name of the sticker.
.. describe:: x == y .. describe:: x == y
Checks if the sticker is equal to another sticker Checks if the sticker is equal to another sticker.
.. describe:: x != y .. describe:: x != y
Checks if the sticker is not equal to another sticker Checks if the sticker is not equal to another sticker.
Attributes Attributes
---------- ----------
name: :class:`str` name: :class:`str`
The sticker's name The sticker's name.
id: :class:`int` id: :class:`int`
The id of the sticker The id of the sticker.
description: :class:`str` description: :class:`str`
The description of the sticker The description of the sticker.
pack_id: :class:`int` pack_id: :class:`int`
The id of the sticker's pack The id of the sticker's pack.
format: :class:`StickerType` format: :class:`StickerType`
The format for the sticker's image The format for the sticker's image.
image: :class:`str` image: :class:`str`
The sticker's image The sticker's image.
tags: List[:class:`str`] tags: List[:class:`str`]
A list of tags for the sticker A list of tags for the sticker.
preview_image: Optional[:class:`str`] 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') __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. """Returns an :class:`Asset` for the sticker's image.
.. note:: .. note::
This will return ``None`` if the format is ``StickerType.lottie`` This will return ``None`` if the format is ``StickerType.lottie``.
Returns Returns
------- -------