Nadir Chowdhury
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
5 deletions
-
discord/sticker.py
|
|
@ -66,10 +66,8 @@ class Sticker(Hashable): |
|
|
|
The sticker's image. |
|
|
|
tags: List[:class:`str`] |
|
|
|
A list of tags for the sticker. |
|
|
|
preview_image: Optional[:class:`str`] |
|
|
|
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') |
|
|
|
|
|
|
|
def __init__(self, *, state, data): |
|
|
|
self._state = state |
|
|
@ -85,8 +83,6 @@ class Sticker(Hashable): |
|
|
|
except KeyError: |
|
|
|
self.tags = [] |
|
|
|
|
|
|
|
self.preview_image = data.get('preview_asset') |
|
|
|
|
|
|
|
def __repr__(self): |
|
|
|
return f'<{self.__class__.__name__} id={self.id} name={self.name!r}>' |
|
|
|
|
|
|
|