chore: add type hints for test

This commit is contained in:
Oleg A 2023-09-18 14:25:49 +03:00
parent a8573aa2af
commit 333d13fb2e
No known key found for this signature in database
GPG key ID: 5FE046817A9657C5

View file

@ -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