We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e8041 commit 374a802Copy full SHA for 374a802
1 file changed
tests/test_info_utils.py
@@ -16,7 +16,9 @@ def test_is_small_dataset(
16
dataset_size, config_max_in_memory_dataset_size, env_max_in_memory_dataset_size, monkeypatch
17
):
18
if config_max_in_memory_dataset_size != "default":
19
- monkeypatch.setattr(datasets.config, "HF_MAX_IN_MEMORY_DATASET_SIZE_IN_BYTES", config_max_in_memory_dataset_size)
+ monkeypatch.setattr(
20
+ datasets.config, "HF_MAX_IN_MEMORY_DATASET_SIZE_IN_BYTES", config_max_in_memory_dataset_size
21
+ )
22
23
max_in_memory_dataset_size = datasets.config.HF_MAX_IN_MEMORY_DATASET_SIZE_IN_BYTES
24
if config_max_in_memory_dataset_size == "default":
0 commit comments