Browse Source

Remove Sticker.preview_image

pull/6744/head
Nadir Chowdhury 4 years ago
committed by GitHub
parent
commit
b610998491
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      discord/sticker.py

6
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}>'

Loading…
Cancel
Save