From 95cfddf13e2c2856e6bb27bf1d36f7fd78311a34 Mon Sep 17 00:00:00 2001 From: ENCRYPTED <48645524+ENCRYPTEDFOREVER@users.noreply.github.com> Date: Sat, 17 Sep 2022 21:16:10 +0300 Subject: [PATCH] get_custom_emoji_stickers docstring fix --- aiogram/bot/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aiogram/bot/bot.py b/aiogram/bot/bot.py index 27c1ed63..3277292c 100644 --- a/aiogram/bot/bot.py +++ b/aiogram/bot/bot.py @@ -3051,9 +3051,9 @@ class Bot(BaseBot, DataMixin, ContextInstanceMixin): Use this method to get information about custom emoji stickers by their identifiers. - Source: https://core.telegram.org/bots/api#uploadstickerfile + Source: https://core.telegram.org/bots/api#getcustomemojistickers - :param custom_emoji_ids: User identifier of sticker file owner + :param custom_emoji_ids: List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified. :type custom_emoji_ids: :obj:`typing.List[base.String]` :return: Returns an Array of Sticker objects. :rtype: :obj:`typing.List[types.Sticker]`