mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
fix IsReplyFilter typing
This commit is contained in:
parent
f7fdaa1153
commit
0365173450
1 changed files with 1 additions and 1 deletions
|
|
@ -636,6 +636,6 @@ class IsReplyFilter(BoundFilter):
|
|||
def __init__(self, is_reply):
|
||||
self.is_reply = is_reply
|
||||
|
||||
async def check(self, msg: ats.Message):
|
||||
async def check(self, msg: Message):
|
||||
if msg.reply_to_message:
|
||||
return {'reply': msg.reply_to_message}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue