Первая кнопка зарегистрироваться не показывает в боте в чем может быть проблема ?
def show_registration_button(update: Update, context: CallbackContext):
keyboard = [
[InlineKeyboardButton("Зарегистрироваться в 1WIN", url='https://1wowei.xyz/casino/list?open=register')],
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.effective_message.reply_text('Для начала заработка необходимо зарегистрироваться:', reply_markup=reply_markup)
def show_channels(update: Update, context: CallbackContext):
keyboard = [
[InlineKeyboardButton("Подписаться на канал", url='https://t.me/test_ch521')],
[InlineKeyboardButton("Я подписался", callback_data='subscribed')]
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.effective_message.reply_text('Пожалуйста, подпишитесь на канал:', reply_markup=reply_markup)
def subscribed(update: Update, context: CallbackContext):
update.effective_message.reply_text("Спасибо за подписку! Теперь вы можете начать заработок.")
show_main_menu(update)
return SHOW_ACTIONS
def show_main_menu(update: Update):