From 3315c8ccc7a68fef50aaad6927d93af7cbad2d62 Mon Sep 17 00:00:00 2001 From: Oleg Oleg Date: Thu, 25 Dec 2025 00:19:00 +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 72f1586..611dd14 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 = 60) -> InlineKeyboardMarkup: +def build_time_keyboard(selected: date, start_hour: int = 9, end_hour: int = 21, step_minutes: int = 1src/core/inline_calendar.py0) -> InlineKeyboardMarkup: buttons: list[list[InlineKeyboardButton]] = [] row: list[InlineKeyboardButton] = [] current = datetime.combine(selected, datetime.min.time()).replace(hour=start_hour, minute=0)