mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Fix type of attribute id of InlineQuery from int to str
This commit is contained in:
parent
93dcbbeb02
commit
1eda7cafd4
@ -3261,7 +3261,7 @@ class InlineQuery(JsonDeserializable):
|
||||
return cls(**obj)
|
||||
|
||||
def __init__(self, id, from_user, query, offset, chat_type=None, location=None, **kwargs):
|
||||
self.id: int = id
|
||||
self.id: str = id
|
||||
self.from_user: User = from_user
|
||||
self.query: str = query
|
||||
self.offset: str = offset
|
||||
|
Loading…
Reference in New Issue
Block a user