Skip to content

Commit

Permalink
fix get_checked type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
vlkorsakov committed Feb 19, 2024
1 parent 770a116 commit 7c02431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiogram_dialog/widgets/kbd/select.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def __init__(
when=when,
)

def get_checked(self, manager: DialogManager) -> Optional[str]:
def get_checked(self, manager: DialogManager) -> Optional[T]:
data = self._get_checked(manager)
if data is None:
return None
Expand Down

0 comments on commit 7c02431

Please sign in to comment.