mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-02 11:10:18 +03:00
Revert "Allows multiselection of poll option with callable"
This reverts commit a30ec32b6f
.
This commit is contained in:
parent
a30ec32b6f
commit
f187767675
|
@ -865,12 +865,6 @@ class Message(ChatGetter, SenderGetter, TLObject, abc.ABC):
|
||||||
|
|
||||||
If the button is pressed without this, `ValueError` is raised.
|
If the button is pressed without this, `ValueError` is raised.
|
||||||
|
|
||||||
multiselect_options (`bool`):
|
|
||||||
Allows multiselection of poll options for which the callable
|
|
||||||
`filter` or `text` returns `True`.
|
|
||||||
|
|
||||||
Defaults to `False`.
|
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
@ -921,8 +915,6 @@ class Message(ChatGetter, SenderGetter, TLObject, abc.ABC):
|
||||||
return [answers[i].option]
|
return [answers[i].option]
|
||||||
if text is not None:
|
if text is not None:
|
||||||
if callable(text):
|
if callable(text):
|
||||||
if multiselect_options:
|
|
||||||
return [answer.option for answer in answers if text(answer.text)]
|
|
||||||
for answer in answers:
|
for answer in answers:
|
||||||
if text(answer.text):
|
if text(answer.text):
|
||||||
return [answer.option]
|
return [answer.option]
|
||||||
|
@ -933,8 +925,6 @@ class Message(ChatGetter, SenderGetter, TLObject, abc.ABC):
|
||||||
return
|
return
|
||||||
|
|
||||||
if filter is not None:
|
if filter is not None:
|
||||||
if multiselect_options:
|
|
||||||
return [answer.option for answer in answers if filter(answer)]
|
|
||||||
for answer in answers:
|
for answer in answers:
|
||||||
if filter(answer):
|
if filter(answer):
|
||||||
return [answer.option]
|
return [answer.option]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user