sticker 修复错误

This commit is contained in:
xtaodada 2022-12-04 22:46:32 +08:00
parent 9d21174c51
commit 6b382e07dd
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

View File

@ -1,6 +1,7 @@
import contextlib import contextlib
from asyncio import sleep from asyncio import sleep
from typing import Optional
from pyrogram.raw.functions.messages import GetStickerSet from pyrogram.raw.functions.messages import GetStickerSet
from pyrogram.raw.functions.stickers import CreateStickerSet from pyrogram.raw.functions.stickers import CreateStickerSet
@ -66,8 +67,8 @@ class Sticker:
should_forward: Message should_forward: Message
is_animated: bool is_animated: bool
is_video: bool is_video: bool
document: InputDocument document: Optional[InputDocument]
document_path: str document_path: Optional[str]
software: str = "PagerMaid-Pyro" software: str = "PagerMaid-Pyro"
def __init__(self, message: Message, sticker_set: str = "", emoji: str = "😀", def __init__(self, message: Message, sticker_set: str = "", emoji: str = "😀",
@ -81,6 +82,8 @@ class Sticker:
self.should_create = False self.should_create = False
self.is_animated = False self.is_animated = False
self.is_video = False self.is_video = False
self.document = None
self.document_path = None
@staticmethod @staticmethod
def get_custom_sticker_set(): def get_custom_sticker_set():