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

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: