diff --git a/aiogram/methods/base.py b/aiogram/methods/base.py index b2d35bec..0c9e64a4 100644 --- a/aiogram/methods/base.py +++ b/aiogram/methods/base.py @@ -93,3 +93,6 @@ class TelegramMethod(BotContextController, BaseModel, Generic[TelegramType], ABC "and then call it `await method()`" ) return self.emit(bot).__await__() + + async def __call__(self) -> TelegramType: + return await self