From 4f6a27ef855365aed8eba86919a9184861eb925f Mon Sep 17 00:00:00 2001 From: devproject Date: Sun, 14 Jun 2026 21:09:08 +0400 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5:=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=9D=D0=B0=D0=B7=D0=B0=D0=B4=20=D0=B4=D0=BE=D0=B1?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=B2=20=D0=B2=D1=8B?= =?UTF-8?q?=D0=B1=D0=BE=D1=80=20=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=20(time=5Fslots.py)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/keyboards/time_slots.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/keyboards/time_slots.py b/app/keyboards/time_slots.py index 2474a99..fb5cf35 100644 --- a/app/keyboards/time_slots.py +++ b/app/keyboards/time_slots.py @@ -1,5 +1,6 @@ from aiogram.types import InlineKeyboardMarkup, InlineKeyboardButton from app.config import TIME_SLOTS +from app.keyboards.back import get_back_button def get_time_keyboard(busy_times): @@ -17,4 +18,5 @@ def get_time_keyboard(busy_times): row = [] if row: buttons.append(row) + buttons.append(get_back_button()) return InlineKeyboardMarkup(inline_keyboard=buttons)