File "E:\Telegram-Bot\pythonProject\main.py", line 22 def bot_massage(massage): IndentationError: unexpected unindent
from email import message
import telebot
from telebot import types
bot = telebot.TeleBot(token)
@bot.message_handler(commands=['start'])
def start(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard = True)
item1 = types.InlineKeyboardButton('Наборы')
item2 = types.InlineKeyboardButton('Вбаксы')
item3 = types.InlineKeyboardButton('подписка отряда Fortnite')
item4 = types.InlineKeyboardButton('Поддержка')
item5 = types.InlineKeyboardButton('FAQ')
markup.add(item1, item2, item3, item4)
bot.send_message(message.chat.id, 'Привет, {0.first_name}!'.format(message.from_user),reply_markup = markup)
@bot.message.handler(content_types=['text'])
def bot_massage(massage):
if message.chat. type == 'private':
if message.text == 'Наборы':
bot.send_message(message.chat.id, 'Наборы')
elif message.text == 'Наборы':
markup = types.ReplyKeyboardMarkup(resize_keyboard= True)
item1 = types.KeyboardButton('Мир Грёз')
item2 = types.KeyboardButton('Мятежный Разведчик')
item3 = types.KeyboardButton('Ценные агенты')
back = types.KeyboardButton('⬅ Назад')
markup.add(item1, item3, back)
bot.polling(non_stop=True)
IndentationError: unexpected unindentозначает, что форматирование файла кривое. Скорее всего, табы вместо пробелов или наоборот в 22 строке. При форматировании не то вставили. Выглядеть оно может правильно, но питону важно, чтобы все было идентично.