Skip to content

Commit a9379f8

Browse files
committed
fix tests
1 parent ba167db commit a9379f8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/datasets/load.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,6 @@ def load_dataset_builder(
14641464
download_mode: Optional[DownloadMode] = None,
14651465
revision: Optional[Union[str, Version]] = None,
14661466
use_auth_token: Optional[Union[bool, str]] = None,
1467-
storage_options: Optional[dict] = None,
14681467
**config_kwargs,
14691468
) -> DatasetBuilder:
14701469
"""Load a dataset builder from the Hugging Face Hub, or a local dataset. A dataset builder can be used to inspect general information that is required to build a dataset (cache directory, config, dataset info, etc.)
@@ -1518,7 +1517,6 @@ def load_dataset_builder(
15181517
You can specify a different version that the default "main" by using a commit sha or a git tag of the dataset repository.
15191518
use_auth_token (``str`` or :obj:`bool`, optional): Optional string or boolean to use as Bearer token for remote files on the Datasets Hub.
15201519
If True, will get token from `"~/.huggingface"`.
1521-
storage_options (:obj:`dict`, optional): Key/value pairs to be passed on to the caching file-system backend, if any.
15221520
**config_kwargs (additional keyword arguments): Keyword arguments to be passed to the :class:`BuilderConfig`
15231521
and used in the :class:`DatasetBuilder`.
15241522
@@ -1580,7 +1578,6 @@ def load_dataset_builder(
15801578
hash=hash,
15811579
features=features,
15821580
use_auth_token=use_auth_token,
1583-
storage_options=storage_options,
15841581
**builder_kwargs,
15851582
**config_kwargs,
15861583
)

0 commit comments

Comments
 (0)