mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-12 07:50:39 +00:00
FileSysteBlobLoader: Expand user path (#10133)
Fix for: https://github.com/langchain-ai/langchain/issues/10019 Verified fix manually
This commit is contained in:
parent
31bbe80758
commit
e0f6ba08d6
@ -99,7 +99,7 @@ class FileSystemBlobLoader(BlobLoader):
|
|||||||
else:
|
else:
|
||||||
raise TypeError(f"Expected str or Path, got {type(path)}")
|
raise TypeError(f"Expected str or Path, got {type(path)}")
|
||||||
|
|
||||||
self.path = _path
|
self.path = _path.expanduser() # Expand user to handle ~
|
||||||
self.glob = glob
|
self.glob = glob
|
||||||
self.suffixes = set(suffixes or [])
|
self.suffixes = set(suffixes or [])
|
||||||
self.show_progress = show_progress
|
self.show_progress = show_progress
|
||||||
|
Loading…
Reference in New Issue
Block a user