From 815efbcb9d2d1a3209c22b568c6b2a9f57e3b82c Mon Sep 17 00:00:00 2001 From: Oleg Oleg Date: Thu, 25 Dec 2025 00:24:30 +0400 Subject: [PATCH] change time --- src/core/inline_calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/inline_calendar.py b/src/core/inline_calendar.py index 611dd14..9375cb8 100644 --- a/src/core/inline_calendar.py +++ b/src/core/inline_calendar.py @@ -111,7 +111,7 @@ def build_month_keyboard(current: date) -> InlineKeyboardMarkup: return InlineKeyboardMarkup(keyboard) -def build_time_keyboard(selected: date, start_hour: int = 9, end_hour: int = 21, step_minutes: int = 1src/core/inline_calendar.py0) -> InlineKeyboardMarkup: +def build_time_keyboard(selected: date, start_hour: int = 9, end_hour: int = 21, step_minutes: int = 10) -> InlineKeyboardMarkup: buttons: list[list[InlineKeyboardButton]] = [] row: list[InlineKeyboardButton] = [] current = datetime.combine(selected, datetime.min.time()).replace(hour=start_hour, minute=0)