From 163c034a9714fd6789ae27640afd2264f7a4bca1 Mon Sep 17 00:00:00 2001 From: Dirk Groeneveld Date: Tue, 28 May 2024 18:18:55 -0700 Subject: [PATCH] All downloads are recursive now? --- tango/integrations/wandb/step_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tango/integrations/wandb/step_cache.py b/tango/integrations/wandb/step_cache.py index 7195486b8..56ea8b84c 100644 --- a/tango/integrations/wandb/step_cache.py +++ b/tango/integrations/wandb/step_cache.py @@ -142,7 +142,7 @@ def use_step_result_artifact(self, step: Union[Step, StepInfo]) -> None: def _download_step_remote(self, step_result, target_dir: PathOrStr): try: - step_result.download(root=target_dir, recursive=True) + step_result.download(root=target_dir) except (WandbError, ValueError): raise RemoteNotFoundError()