Skip to content

Commit 87dd046

Browse files
sevenc-nanashiRapptz
authored andcommitted
Add periods to sticker docs
1 parent 7d37c3a commit 87dd046

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

discord/sticker.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,42 +30,42 @@
3030
from .enums import StickerType, try_enum
3131

3232
class Sticker(Hashable):
33-
"""Represents a sticker
33+
"""Represents a sticker.
3434
3535
.. versionadded:: 1.6
3636
3737
.. container:: operations
3838
3939
.. describe:: str(x)
4040
41-
Returns the name of the sticker
41+
Returns the name of the sticker.
4242
4343
.. describe:: x == y
4444
45-
Checks if the sticker is equal to another sticker
45+
Checks if the sticker is equal to another sticker.
4646
4747
.. describe:: x != y
4848
49-
Checks if the sticker is not equal to another sticker
49+
Checks if the sticker is not equal to another sticker.
5050
5151
Attributes
5252
----------
5353
name: :class:`str`
54-
The sticker's name
54+
The sticker's name.
5555
id: :class:`int`
56-
The id of the sticker
56+
The id of the sticker.
5757
description: :class:`str`
58-
The description of the sticker
58+
The description of the sticker.
5959
pack_id: :class:`int`
60-
The id of the sticker's pack
60+
The id of the sticker's pack.
6161
format: :class:`StickerType`
62-
The format for the sticker's image
62+
The format for the sticker's image.
6363
image: :class:`str`
64-
The sticker's image
64+
The sticker's image.
6565
tags: List[:class:`str`]
66-
A list of tags for the sticker
66+
A list of tags for the sticker.
6767
preview_image: Optional[:class:`str`]
68-
The sticker's preview asset hash
68+
The sticker's preview asset hash.
6969
"""
7070
__slots__ = ('_state', 'id', 'name', 'description', 'pack_id', 'format', 'image', 'tags', 'preview_image')
7171

@@ -101,7 +101,7 @@ def image_url(self):
101101
"""Returns an :class:`Asset` for the sticker's image.
102102
103103
.. note::
104-
This will return ``None`` if the format is ``StickerType.lottie``
104+
This will return ``None`` if the format is ``StickerType.lottie``.
105105
106106
Returns
107107
-------

0 commit comments

Comments
 (0)