Improvement[Community] Improve api doc for SingleFileFacebookMessengerChatLoader (#25536)

Delete redundant args in api doc
This commit is contained in:
ZhangShenao 2024-08-19 21:00:21 +08:00 committed by GitHub
parent 49dea06af1
commit 4255a30f20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,9 +16,6 @@ class SingleFileFacebookMessengerChatLoader(BaseChatLoader):
Args:
path (Union[Path, str]): The path to the chat file.
Attributes:
path (Path): The path to the chat file.
"""
def __init__(self, path: Union[Path, str]) -> None:
@ -58,9 +55,6 @@ class FolderFacebookMessengerChatLoader(BaseChatLoader):
path (Union[str, Path]): The path to the directory
containing the chat files.
Attributes:
path (Path): The path to the directory containing the chat files.
"""
def __init__(self, path: Union[str, Path]) -> None: