flake8
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-07-19 19:26:39 +09:00
parent 8d48ee2a35
commit 933b2eda78

View File

@@ -13,7 +13,9 @@ BOT_TOKENS = os.getenv("BOT_TOKENS", "").split(",")
async def send_echo_message(message: Message, bot: Bot): async def send_echo_message(message: Message, bot: Bot):
me = await bot.get_me() me = await bot.get_me()
await message.answer(f"Это бот {me.username}, вы написали \"{message.text}\"") await message.answer(
f"Это бот {me.username}, вы написали \"{message.text}\""
)
async def start_bot(token: str): async def start_bot(token: str):