H
H
happyheadshot2022-02-03 12:54:30
Python
happyheadshot, 2022-02-03 12:54:30

How to remove reply to messages in telegram bot?

Hello, I am writing a telegram bot on the aiogram module. Faced such a problem that when I write a message, the bot forwards this message and replies to it, how can I remove this?
Here is the code:

import aiogram
import logging
from aiogram import Bot, Dispatcher, executor, types

API_TOKEN = 'Secret'
logging.basicConfig(level=logging.INFO)
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)

@dp.message_handler(commands=['start'])
async def send_welcome(message: types.Message):
  await message.reply("Привет.")
  await message.reply('Если что можно прописать команду /help, она поможет.')
@dp.message_handler(commands=['help'])
async def send_welcome(message: types.Message):
  await message.reply('Для того, чтобы начать проверку, пропиши команду "начать проверку"')

if __name__ == '__main__':
    executor.start_polling(dp, skip_updates=True)

61fba63bb5891737909026.jpeg

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Mikhail Evseev, 2022-02-03
@ultraevs

await message.answer()

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question