From 89bffb382dac40cecbfbc181a9b5d7a14a5951d0 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Thu, 29 Jul 2021 00:12:53 +0300 Subject: [PATCH] Fixed type --- aiogram/utils/keyboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/utils/keyboard.py b/aiogram/utils/keyboard.py index b7999b46..a8e31c17 100644 --- a/aiogram/utils/keyboard.py +++ b/aiogram/utils/keyboard.py @@ -279,7 +279,7 @@ class InlineKeyboardBuilder(KeyboardBuilder[InlineKeyboardButton]): super().__init__(InlineKeyboardButton) -class ReplyKeyboardBuilder(KeyboardBuilder[InlineKeyboardButton]): +class ReplyKeyboardBuilder(KeyboardBuilder[KeyboardButton]): if TYPE_CHECKING: # pragma: no cover @no_type_check