How do I get the necessary data, chat_id and message_id, in order to create in the create_time_zones_keyboard () function to change the message from the bot that was sent in the wishes_command (message) function?

def create_time_zones_keyboard(): '''some code''' keyboard.append(кнопки) bot.edit_message_text(text="something text", chat_id='', message_id='', reply_markup=keyboard) def wishes_answer_keyboard(): keyboard = InlineKeyboardMarkup() button_1 = InlineKeyboardButton(text='1', callback_data=create_time_zones_keyboard()) button_2 = InlineKeyboardButton(text='2', callback_data=cancel_answer()) return keyboard.add(button_yes, button_no) @bot.message_handler(['wishes']) def wishes_command(message): bot.send_message(message.chat.id, "Some text", reply_markup=wishes_answer_keyboard()) 

    0