File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44.. currentmodule:::: pyrogram.Client
55
66 .. autoclass :: pyrogram.Client
7+ :inherited-members:
78 :members:
89
910 **Available methods **
Original file line number Diff line number Diff line change 1717# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
1818
1919from .get_inline_bot_results import GetInlineBotResults
20- from .send_inline_bot_results import SendInlineBotResults
20+ from .send_inline_bot_result import SendInlineBotResult
2121
2222
2323class Inline (
24- SendInlineBotResults ,
24+ SendInlineBotResult ,
2525 GetInlineBotResults
2626):
2727 pass
Original file line number Diff line number Diff line change 2020from ....ext import BaseClient
2121
2222
23- class SendInlineBotResults (BaseClient ):
23+ class SendInlineBotResult (BaseClient ):
2424 def send_inline_bot_result (self ,
2525 chat_id : int or str ,
2626 query_id : int ,
Original file line number Diff line number Diff line change 2222from .send_media_group import SendMediaGroup
2323from .send_photo import SendPhoto
2424from .send_sticker import SendSticker
25+ from .send_location import SendLocation
2526from .send_venue import SendVenue
2627from .send_video import SendVideo
2728from .send_video_note import SendVideoNote
3132class Media (
3233 SendContact ,
3334 SendVenue ,
35+ SendLocation ,
3436 SendMediaGroup ,
3537 SendVideoNote ,
3638 SendVoice ,
You can’t perform that action at this time.
0 commit comments