We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96ffc7e commit 787eabdCopy full SHA for 787eabd
pyrogram/methods/bots/send_inline_bot_result.py
@@ -30,7 +30,7 @@ async def send_inline_bot_result(
30
result_id: str,
31
disable_notification: bool = None,
32
reply_to_message_id: int = None
33
- ):
+ ) -> "raw.base.Updates":
34
"""Send an inline bot result.
35
Bot results can be retrieved using :meth:`~pyrogram.Client.get_inline_bot_results`
36
@@ -56,7 +56,7 @@ async def send_inline_bot_result(
56
If the message is a reply, ID of the original message.
57
58
Returns:
59
- :obj:`~pyrogram.types.Message`: On success, the sent inline result message is returned.
+ :obj:`~pyrogram.raw.base.Updates`: Currently, on success, a raw result is returned.
60
61
Example:
62
.. code-block:: python
0 commit comments