mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Fix commands in examples
This commit is contained in:
parent
39ca3e8fcf
commit
ad4ccac8f7
4 changed files with 6 additions and 6 deletions
|
|
@ -40,7 +40,7 @@ def is_bot_token(value: str) -> Union[bool, Dict[str, Any]]:
|
|||
|
||||
|
||||
@main_router.message(Command(commands=["add"], command_magic=F.args.func(is_bot_token)))
|
||||
async def command_add_bot(message: Message, command: CommandObject, bot: Bot):
|
||||
async def command_add_bot(message: Message, command: CommandObject, bot: Bot) -> Any:
|
||||
new_bot = Bot(token=command.args, session=bot.session)
|
||||
try:
|
||||
bot_user = await new_bot.get_me()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue