From 24495e5505c6285f337da2d93378eb578d3e5d73 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 10 Jan 2023 18:18:43 -0500 Subject: [PATCH] Add support for GIF sticker type --- discord/enums.py | 2 ++ docs/api.rst | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/discord/enums.py b/discord/enums.py index 451505861..7aa211768 100644 --- a/discord/enums.py +++ b/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] diff --git a/docs/api.rst b/docs/api.rst index 6a3772c19..037fb23c9 100644 --- a/docs/api.rst +++ b/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.