Igor Yudytskiy
Results
1
issues of
Igor Yudytskiy
Hi. Here is small bot demonstrates the problem: ``` import asyncio from telebot.async_telebot import AsyncTeleBot TOKEN = '**********' bot = AsyncTeleBot(TOKEN) @bot.message_handler(commands=['id']) async def id_command(message): return await bot.reply_to(message, text=f'Your id:...
bug