diff options
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index e74e6698..03ca4f97 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -52,6 +52,7 @@ __all__ = ( 'WebhookType', 'ExpireBehaviour', 'ExpireBehavior', + 'StickerType' ) def _create_value_cls(name): @@ -455,3 +456,8 @@ def try_enum(cls, val): return cls._enum_value_map_[val] except (KeyError, TypeError, AttributeError): return val + +class StickerType(Enum): + png = 1 + apng = 2 + lottie = 3 |