mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 14:04:51 +00:00
Fix typing hint missing in forward_messages function (#569)
This commit is contained in:
parent
6e29283d04
commit
01a3aab482
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ class ForwardMessages(Scaffold):
|
|||
message_ids: Union[int, Iterable[int]],
|
||||
disable_notification: bool = None,
|
||||
schedule_date: int = None
|
||||
) -> List["types.Message"]:
|
||||
) -> Union["types.Message", List["types.Message"]]:
|
||||
"""Forward messages of any kind.
|
||||
|
||||
Parameters:
|
||||
|
|
|
|||
Loading…
Reference in a new issue