mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 12:51:18 +00:00
Add retract_vote bound method to Message
This commit is contained in:
parent
5599182fd1
commit
449f318e6d
@ -2869,6 +2869,38 @@ class Message(Object, Update):
|
||||
else:
|
||||
self.reply(button, quote=quote)
|
||||
|
||||
|
||||
def retract_vote(
|
||||
self,
|
||||
) -> "Poll":
|
||||
"""Bound method *retract_vote* of :obj:`Message`.
|
||||
|
||||
Use as a shortcut for:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
client.retract_vote(
|
||||
chat_id=message.chat.id,
|
||||
message_id=message_id,
|
||||
)
|
||||
Example:
|
||||
.. code-block:: python
|
||||
|
||||
message.retract_vote()
|
||||
|
||||
Returns:
|
||||
:obj:`Poll`
|
||||
On success, the poll with the retracted vote is returned.
|
||||
|
||||
Raises:
|
||||
RPCError: In case of a Telegram RPC error.
|
||||
"""
|
||||
|
||||
return self._client.retract_vote(
|
||||
chat_id=self.chat.id,
|
||||
message_id=self.message_id
|
||||
)
|
||||
|
||||
def download(
|
||||
self,
|
||||
file_name: str = "",
|
||||
|
Loading…
Reference in New Issue
Block a user