From 6bbff464174ea80336e2352ce7679324d6acad09 Mon Sep 17 00:00:00 2001 From: wulan17 Date: Thu, 11 Dec 2025 01:51:12 +0700 Subject: [PATCH] pyrofork: fix export_folder_link doc Signed-off-by: wulan17 --- pyrogram/methods/chats/export_folder_link.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyrogram/methods/chats/export_folder_link.py b/pyrogram/methods/chats/export_folder_link.py index 313a4c69..337aaf16 100644 --- a/pyrogram/methods/chats/export_folder_link.py +++ b/pyrogram/methods/chats/export_folder_link.py @@ -25,7 +25,7 @@ class ExportFolderLink: async def export_folder_link( self: "pyrogram.Client", folder_id: int - ) -> str: + ) -> "pyrogram.types.ExportedFolderLink": """Export link to a user's folder. .. include:: /_includes/usable-by/users.rst @@ -35,7 +35,7 @@ class ExportFolderLink: Unique identifier (int) of the target folder. Returns: - ``str``: On success, a link to the folder as string is returned. + :obj:`~pyrogram.types.ExportedFolderLink` objects. Example: .. code-block:: python