Browse Source

Add support for GIF sticker type

pull/9171/head
Rapptz 2 years ago
parent
commit
24495e5505
  1. 2
      discord/enums.py
  2. 6
      docs/api.rst

2
discord/enums.py

@ -535,6 +535,7 @@ class StickerFormatType(Enum):
png = 1
apng = 2
lottie = 3
gif = 4
@property
def file_extension(self) -> str:
@ -543,6 +544,7 @@ class StickerFormatType(Enum):
StickerFormatType.png: 'png',
StickerFormatType.apng: 'png',
StickerFormatType.lottie: 'json',
StickerFormatType.gif: 'gif',
}
# fmt: on
return lookup[self]

6
docs/api.rst

@ -2870,6 +2870,12 @@ of :class:`enum.Enum`.
Represents a sticker with a lottie image.
.. attribute:: gif
Represents a sticker with a gif image.
.. versionadded:: 2.2
.. class:: InviteTarget
Represents the invite type for voice channel invites.

Loading…
Cancel
Save