mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
fix: rm |
This commit is contained in:
parent
ec3ee8f613
commit
ab97201fd3
1 changed files with 3 additions and 3 deletions
|
|
@ -71,7 +71,7 @@ async def create_start_link(
|
|||
bot: Bot,
|
||||
payload: str,
|
||||
encode: bool = False,
|
||||
encoder: Optional[Callable[[bytes], bytes]] | None = None,
|
||||
encoder: Optional[Callable[[bytes], bytes]] = None,
|
||||
) -> str:
|
||||
"""
|
||||
Create 'start' deep link with your payload.
|
||||
|
|
@ -99,7 +99,7 @@ async def create_startgroup_link(
|
|||
bot: Bot,
|
||||
payload: str,
|
||||
encode: bool = False,
|
||||
encoder: Optional[Callable[[bytes], bytes]] | None = None,
|
||||
encoder: Optional[Callable[[bytes], bytes]] = None,
|
||||
) -> str:
|
||||
"""
|
||||
Create 'startgroup' deep link with your payload.
|
||||
|
|
@ -128,7 +128,7 @@ def create_deep_link(
|
|||
link_type: Literal["start", "startgroup"],
|
||||
payload: str,
|
||||
encode: bool = False,
|
||||
encoder: Optional[Callable[[bytes], bytes]] | None = None,
|
||||
encoder: Optional[Callable[[bytes], bytes]] = None,
|
||||
) -> str:
|
||||
"""
|
||||
Create deep link.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue