From 0e1f7ad712b94ebf073a64553baa37cc924489d3 Mon Sep 17 00:00:00 2001 From: XiaoCai <52635310+X1A0CA1@users.noreply.github.com> Date: Sun, 24 Mar 2024 14:15:05 +0800 Subject: [PATCH] docs(get_custom_emoji_stickers): Fix errors in documentation --- pyrogram/methods/messages/get_custom_emoji_stickers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyrogram/methods/messages/get_custom_emoji_stickers.py b/pyrogram/methods/messages/get_custom_emoji_stickers.py index 0a591446..21c02dab 100644 --- a/pyrogram/methods/messages/get_custom_emoji_stickers.py +++ b/pyrogram/methods/messages/get_custom_emoji_stickers.py @@ -34,13 +34,13 @@ class GetCustomEmojiStickers: .. include:: /_includes/usable-by/users-bots.rst Parameters: - custom_emoji_ids (List[:obj:`int` | :obj:`List[int]`]): + custom_emoji_ids (:obj:`int` | :obj:`List[int]`): Custom emoji ID. At most 200 custom emoji identifiers can be specified. Returns: :obj: `~pyrogram.types.Sticker` | List of :obj:`~pyrogram.types.Sticker`: In case *custom_emoji_ids* was not - a lost, a single sticker is returned, otherwise a list of stickers is returned. + a list, a single sticker is returned, otherwise a list of stickers is returned. """ is_list = isinstance(custom_emoji_ids, list) custom_emoji_ids = [custom_emoji_ids] if not is_list else custom_emoji_ids