import types
Token=''
bot = telebot.TeleBot(Token)
@bot.message_handler(commands = ['start'])
def send_welcome(message):
bot.send_message(message.chat.id, "f", reply_markup = menu_keyboard)
bot.register_next_step_handler(message, menu)
@bot.message_handler(content_types = ['text'])
def menu(message):
if message.text == "💰 Кошелёк ETH":
bot.send_message(message.from_user.id, "f")
bot.register_next_step_handler(message, send_welcome)
else message.text == "💰 Кошелёк ETH":
bot.send_message(message.from_user.id, "f")
bot.register_next_step_handler(message, send_welcome)
menu_keyboard = types.ReplyKeyboardMarkup(resize_keyboard = True, row_width = 2)
menu_keyboard.add(types.KeyboardButton("💰 Кошелёк ETH"), types.KeyboardButton("🎲 Betting"), types.KeyboardButton("🚀 О сервисе"), types.KeyboardButton("🤝 Партнёрам"))
bot.infinity_polling(True)
ошибка:
File "main.py", line 18
bot.send_message(message.from_user.id, "f")
^
TabError: inconsistent use of tabs and spaces in indentation
что блин с табууляцией?
pastebin.com
Чел, возможно будешь юзать gist?
Обсуждают сегодня