File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -321,10 +321,12 @@ async def make_store_path(
321321 store = await MemoryStore .open (store_dict = store_like , read_only = _read_only )
322322 elif _has_fsspec and isinstance (store_like , FSMap ):
323323 if path :
324- raise ValueError ("'path' was provided but is not used for FSMap store_like objects" )
324+ raise ValueError (
325+ "'path' was provided but is not used for FSMap store_like objects. Specify the path when creating the FSMap instance instead."
326+ )
325327 if storage_options :
326328 raise ValueError (
327- "'storage_options was provided but is not used for FSMap store_like objects"
329+ "'storage_options was provided but is not used for FSMap store_like objects. Specify the storage options when creating the FSMap instance instead. "
328330 )
329331 store = FsspecStore .from_mapper (store_like , read_only = _read_only )
330332 else :
You can’t perform that action at this time.
0 commit comments