2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 21:07:59 +00:00

Poll ids are now strings and not integers

This commit is contained in:
Dan 2019-04-14 20:48:25 +02:00
parent cbc938931d
commit 5c638e707e

View File

@ -28,7 +28,7 @@ class Poll(PyrogramType):
"""This object represents a Poll. """This object represents a Poll.
Args: Args:
id (``int``): id (``str``):
Unique poll identifier. Unique poll identifier.
question (``str``): question (``str``):
@ -53,7 +53,7 @@ class Poll(PyrogramType):
self, self,
*, *,
client: "pyrogram.client.ext.BaseClient", client: "pyrogram.client.ext.BaseClient",
id: int, id: str,
question: str, question: str,
options: List[PollOption], options: List[PollOption],
is_closed: bool, is_closed: bool,
@ -98,7 +98,7 @@ class Poll(PyrogramType):
) )
return Poll( return Poll(
id=poll.id, id=str(poll.id),
question=poll.question, question=poll.question,
options=options, options=options,
is_closed=poll.closed, is_closed=poll.closed,