Add dev mode and fix menu and fix stars and cryptobot

This commit is contained in:
Zakhar Izmaylov
2024-11-15 11:40:25 +03:00
parent 31fa90aef1
commit 5dd1fab7e9
9 changed files with 80 additions and 72 deletions
+3 -1
View File
@@ -18,7 +18,9 @@ async def send_instructions(callback_query: types.CallbackQuery):
await callback_query.answer()
return
back_button = InlineKeyboardButton(text="🔙 Назад", callback_data="back_to_main")
back_button = InlineKeyboardButton(
text="⬅️ Вернуться в профиль", callback_data="view_profile"
)
keyboard = InlineKeyboardMarkup(inline_keyboard=[[back_button]])
with open(image_path, "rb") as image_from_buffer: