Small fixes
This commit is contained in:
parent
8454d438be
commit
bef0a24408
@ -4,6 +4,7 @@ Client
|
||||
.. currentmodule:::: pyrogram.Client
|
||||
|
||||
.. autoclass:: pyrogram.Client
|
||||
:inherited-members:
|
||||
:members:
|
||||
|
||||
**Available methods**
|
||||
|
@ -17,11 +17,11 @@
|
||||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from .get_inline_bot_results import GetInlineBotResults
|
||||
from .send_inline_bot_results import SendInlineBotResults
|
||||
from .send_inline_bot_result import SendInlineBotResult
|
||||
|
||||
|
||||
class Inline(
|
||||
SendInlineBotResults,
|
||||
SendInlineBotResult,
|
||||
GetInlineBotResults
|
||||
):
|
||||
pass
|
||||
|
@ -20,7 +20,7 @@ from pyrogram.api import functions
|
||||
from ....ext import BaseClient
|
||||
|
||||
|
||||
class SendInlineBotResults(BaseClient):
|
||||
class SendInlineBotResult(BaseClient):
|
||||
def send_inline_bot_result(self,
|
||||
chat_id: int or str,
|
||||
query_id: int,
|
@ -22,6 +22,7 @@ from .send_document import SendDocument
|
||||
from .send_media_group import SendMediaGroup
|
||||
from .send_photo import SendPhoto
|
||||
from .send_sticker import SendSticker
|
||||
from .send_location import SendLocation
|
||||
from .send_venue import SendVenue
|
||||
from .send_video import SendVideo
|
||||
from .send_video_note import SendVideoNote
|
||||
@ -31,6 +32,7 @@ from .send_voice import SendVoice
|
||||
class Media(
|
||||
SendContact,
|
||||
SendVenue,
|
||||
SendLocation,
|
||||
SendMediaGroup,
|
||||
SendVideoNote,
|
||||
SendVoice,
|
||||
|
Loading…
Reference in New Issue
Block a user