при выполнения команды button выходит ошибка : ReplyKeyboardMarkup.__init__() got an unexpected keyword argument 'resize_keyboard'
import telebot
import configure
from telethon import functions, types
x = 0
bot = telebot.TeleBot(configure.TOKEN)
@bot.message_handler( commands = ["button"])
def message_handler(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
item1 = types.KeyboardButton("Кнопка")
ter = True
markup.add(item1)
bot.send_message(message.chat.id, 'Выберите что вам надо', reply_markup=markup)