Пробую немного освоить ботов - пишу код
import os
import telebot
from telebot import *
TOKEN ='123'
bot = telebot.TeleBot(TOKEN)
@bot.message_handler(command=['start'])
def start(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
item1 = types.KeyboardButton('1')
item2 = types.KeyboardButton('2')
markup.add(item1, item2)
bot.send_message(message.chat.id, 'Hi'.format(message.from_user), reply_markup=markup)
bot.infinity_polling()
Но кнопки не появляются, подскажите где ошибка
P.S.
Исправил опечатку - не помогло - код в вопросе обновил
P. P.S. - обновил код