From 333d13fb2e4f6cfb602ddc5c41b988a8697d8042 Mon Sep 17 00:00:00 2001 From: Oleg A Date: Mon, 18 Sep 2023 14:25:49 +0300 Subject: [PATCH] chore: add type hints for test --- tests/test_api/test_types/test_reply_keyboard_remove.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api/test_types/test_reply_keyboard_remove.py b/tests/test_api/test_types/test_reply_keyboard_remove.py index 47420c81..67e26373 100644 --- a/tests/test_api/test_types/test_reply_keyboard_remove.py +++ b/tests/test_api/test_types/test_reply_keyboard_remove.py @@ -17,5 +17,5 @@ class TestReplyKeyboardRemove: "kwargs,expected", [[{}, True], [{"remove_keyboard": True}, True]], ) - def test_remove_keyboard_values(self, kwargs, expected): + def test_remove_keyboard_values(self, kwargs: dict[str, bool], expected: bool): assert ReplyKeyboardRemove(**kwargs).remove_keyboard is expected