mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
pyrofork: Remove unused animated and videos field from stickerset
Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
parent
db562461ad
commit
4bcc690083
1 changed files with 0 additions and 12 deletions
|
|
@ -43,12 +43,6 @@ class StickerSet(Object):
|
||||||
masks (``Boolean``):
|
masks (``Boolean``):
|
||||||
Is this a mask stickerset.
|
Is this a mask stickerset.
|
||||||
|
|
||||||
animated (``Boolean``):
|
|
||||||
Is this a animated stickerset.
|
|
||||||
|
|
||||||
videos (``Boolean``):
|
|
||||||
Is this a videos stickerset.
|
|
||||||
|
|
||||||
emojis (``Boolean``):
|
emojis (``Boolean``):
|
||||||
Is this a emojis stickerset.
|
Is this a emojis stickerset.
|
||||||
"""
|
"""
|
||||||
|
|
@ -61,8 +55,6 @@ class StickerSet(Object):
|
||||||
short_name: str,
|
short_name: str,
|
||||||
count: int,
|
count: int,
|
||||||
masks: bool = None,
|
masks: bool = None,
|
||||||
animated: bool = None,
|
|
||||||
videos: bool = None,
|
|
||||||
emojis: bool = None
|
emojis: bool = None
|
||||||
):
|
):
|
||||||
self.id = id
|
self.id = id
|
||||||
|
|
@ -70,8 +62,6 @@ class StickerSet(Object):
|
||||||
self.short_name = short_name
|
self.short_name = short_name
|
||||||
self.count = count
|
self.count = count
|
||||||
self.masks = masks
|
self.masks = masks
|
||||||
self.animated = animated
|
|
||||||
self.videos = videos
|
|
||||||
self.emojis = emojis
|
self.emojis = emojis
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
@ -83,7 +73,5 @@ class StickerSet(Object):
|
||||||
short_name=getattr(stickerset,"short_name", None),
|
short_name=getattr(stickerset,"short_name", None),
|
||||||
count=getattr(stickerset,"count", None),
|
count=getattr(stickerset,"count", None),
|
||||||
masks=getattr(stickerset,"masks", None),
|
masks=getattr(stickerset,"masks", None),
|
||||||
animated=getattr(stickerset,"animated", None),
|
|
||||||
videos=getattr(stickerset,"videos", None),
|
|
||||||
emojis=getattr(stickerset,"emojis", None)
|
emojis=getattr(stickerset,"emojis", None)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue