mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
chore: add type hints for test
This commit is contained in:
parent
a8573aa2af
commit
333d13fb2e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue