Не могу понять в чём ошибка.
Код:
# -*- coding: utf8 -*-
import telebot
import config
from telebot import types
bot = telebot.TeleBot(config.TOKEN)
@bot.message_handler(commands=['start'])
def start(message):
if message.chat.type == 'private':
markup = types.InlineKeyboardMarkup(row_width=2)
ru = types.InlineKeyboardButton("Русский ", callback_data='rur')
en = types.InlineKeyboardButton("English ", callback_data='ene')
markup.add(ru, en)
bot.send_message(message.chat.id, 'Отлично, сам как?', reply_markup=markup)
bot.polling(none_stop=True)
Вот из консоли:
ru = types.InlineKeyboardButton("Русский \U0001f1f7\U0001f1fa", callback_data='rur')
^
IndentationError: unindent does not match any outer indentation level