Update async_telebot.py

This commit is contained in:
_run 2022-08-13 14:57:39 +05:00
parent ffb34da610
commit 20bdb54e94
1 changed files with 1 additions and 1 deletions

View File

@ -5039,7 +5039,7 @@ class AsyncTeleBot:
:return: Returns an Array of Sticker objects.
:rtype: :obj:`list` of :class:`telebot.types.Sticker`
"""
result = asyncio_helper.get_custom_emoji_stickers(self.token, custom_emoji_ids)
result = await asyncio_helper.get_custom_emoji_stickers(self.token, custom_emoji_ids)
return [types.Sticker.de_json(sticker) for sticker in result]
async def upload_sticker_file(self, user_id: int, png_sticker: Union[Any, str]) -> types.File: