From 203f1460676db5a575d0edf904367272ab5f3ce7 Mon Sep 17 00:00:00 2001 From: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com> Date: Wed, 14 Dec 2022 14:04:21 +0300 Subject: [PATCH] fix typo in hyperlink --- Working-with-Files-and-Media.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-with-Files-and-Media.md b/Working-with-Files-and-Media.md index 0c5db72..3fc3f77 100644 --- a/Working-with-Files-and-Media.md +++ b/Working-with-Files-and-Media.md @@ -65,7 +65,7 @@ A call to [`send_media_group()`](https://python-telegram-bot.readthedocs.io/tele await bot.send_media_group(chat_id=chat_id, media=[media_1, media_2, ...]) ``` -Each of the items in the `media` sequence (list or tuple) must be an instances of [`InputMediaAudio`](https://python-telegram-bot.readthedocs.io/telegram.inputmediaaudio.html#telegram-inputmediaaudio), [`InputMediaDocument`](https://python-telegram-bot.readthedocs.io/telegram.inputmediadocument.html#telegram-inputmediadocument), [`InputMediaPhoto`](https://python-telegram-bot.readthedocs.io/telegram.inputmediphoto.html#telegram-inputmediaphoto) or [`InputMediaVideo`](https://python-telegram-bot.readthedocs.io/telegram.inputmediavideo.html#telegram-inputmediavideo). The media comes into play like so: +Each of the items in the `media` sequence (list or tuple) must be an instances of [`InputMediaAudio`](https://python-telegram-bot.readthedocs.io/telegram.inputmediaaudio.html#telegram-inputmediaaudio), [`InputMediaDocument`](https://python-telegram-bot.readthedocs.io/telegram.inputmediadocument.html#telegram-inputmediadocument), [`InputMediaPhoto`](https://python-telegram-bot.readthedocs.io/telegram.inputmediaphoto.html#telegram-inputmediaphoto) or [`InputMediaVideo`](https://python-telegram-bot.readthedocs.io/telegram.inputmediavideo.html#telegram-inputmediavideo). The media comes into play like so: ```python media_1 = InputMediaDocument(media=open('tests/test.png', 'rb'), ...)