mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
* Update pydantic, fix errors and warnings (all?) * Fixed typehints * Reformat code, removed unused imports * Fixed typing extensions version compatibility * Fixed coverage * Describe changes * Regen code
17 lines
557 B
Python
17 lines
557 B
Python
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
from ..types import Sticker
|
|
from .base import TelegramMethod
|
|
|
|
|
|
class GetForumTopicIconStickers(TelegramMethod[List[Sticker]]):
|
|
"""
|
|
Use this method to get custom emoji stickers, which can be used as a forum topic icon by any user. Requires no parameters. Returns an Array of :class:`aiogram.types.sticker.Sticker` objects.
|
|
|
|
Source: https://core.telegram.org/bots/api#getforumtopiciconstickers
|
|
"""
|
|
|
|
__returning__ = List[Sticker]
|
|
__api_method__ = "getForumTopicIconStickers"
|