We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aee974 commit 4b67691Copy full SHA for 4b67691
llama-index-core/llama_index/core/storage/kvstore/simple_kvstore.py
@@ -51,7 +51,6 @@ def from_persist_path(
51
"""Load a SimpleKVStore from a persist path and filesystem."""
52
fs = fs or fsspec.filesystem("file")
53
logger.debug(f"Loading {__name__} from {persist_path}.")
54
- print(f"Loading {__name__} from {persist_path}.")
55
with fs.open(persist_path, "rb") as f:
56
data = json.load(f)
57
return cls(data)
0 commit comments