From cda94583ed56400a29e72c2ff63970eaeb25f339 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 25 Nov 2025 00:11:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=20=D0=B4?= =?UTF-8?q?=D0=B2=D0=B5=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BA=D0=B8,=20=D0=BA?= =?UTF-8?q?=D0=B0=D0=BA=20=D1=83=20=D0=BC=D0=B5=D0=BD=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- keyboard/keyboards.py | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/keyboard/keyboards.py b/keyboard/keyboards.py index f4f78ae..d05fb27 100644 --- a/keyboard/keyboards.py +++ b/keyboard/keyboards.py @@ -20,11 +20,7 @@ def main_keyboard(): return builder.as_markup() -def account_keyboard(): - """ - Аккаунт / профиль - Визуал — твой, callback_data — как у Вовы. - """ +def balance_keyboard(): builder = InlineKeyboardBuilder() builder.row( InlineKeyboardButton( @@ -32,18 +28,6 @@ def account_keyboard(): callback_data="popup", ) ) - builder.row( - InlineKeyboardButton( - text="🦴 Мои подписки", - callback_data="buy_subscription", - ) - ) - builder.row( - InlineKeyboardButton( - text="📡 Руководство по подключению", - callback_data="guide", - ) - ) builder.row( InlineKeyboardButton( text="🧾 История транзакций", @@ -53,7 +37,7 @@ def account_keyboard(): builder.row( InlineKeyboardButton( text="🔙 Назад", - callback_data="base", + callback_data="profile", ) ) return builder.as_markup()