From 7171bd4cf6f9d7b2dc89c1052ca13813f24498e7 Mon Sep 17 00:00:00 2001 From: morzahavi <63597261+morzahavi@users.noreply.github.com> Date: Sun, 22 Sep 2024 13:17:36 +0300 Subject: [PATCH] Update examples_storagehelper.md (#935) The command works with "local_folder" not "local_file" --- docs/guides/storage/examples_storagehelper.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/storage/examples_storagehelper.md b/docs/guides/storage/examples_storagehelper.md index 26fe6cdc..e7692509 100644 --- a/docs/guides/storage/examples_storagehelper.md +++ b/docs/guides/storage/examples_storagehelper.md @@ -78,7 +78,7 @@ class method. Specify the remote storage location as the `remote_url` argument a `local_folder` argument. ```python -StorageManager.download_folder(remote_url="s3://bucket/", local_file="/folder/") +StorageManager.download_folder(remote_url="s3://bucket/", local_folder="/folder/") ``` This method downloads a remote folder recursively, maintaining the sub-folder structure from @@ -118,4 +118,4 @@ only the number of files. ```python new_cache_limit = StorageManager.set_cache_file_limit(cache_file_limit=100) -``` \ No newline at end of file +```