помогите:
import telebot
bot = telebot.TeleBot(')
keyboard1 = telebot.types.ReplyKeyboardMarkup()
keyboard1.row('Привет', 'Пока')
@bot.message_handler(commands=['start'])
def start_message(message):
bot.send_message(message.chat.id, 'Привет, ты написал мне /start', reply_markup=keyboard1)
@bot.message_handler(content_types=['text'])
def send_text(message):
if message.text.lower() == 'привет':
telebot.types.ReplyKeyboardRemove()
bot.send_message(message.chat.id, 'Привет, мой создатель')
elif message.text.lower() == 'пока':
bot.send_message(message.chat.id, 'Прощай, создатель')
bot.polling()
Почему после привет, он не удаляет кнопки ?
if message.text.lower() == 'привет': markup = telebot.types.ReplyKeyboardRemove() bot.send_message(message.chat.id, 'Привет, мой создатель', reply_markup = markup)
Обсуждают сегодня