We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5251171 commit cf171f7Copy full SHA for cf171f7
dvc/remote/base.py
@@ -590,8 +590,7 @@ def _download_dir(
590
):
591
from_infos = list(self.walk_files(from_info))
592
to_infos = (
593
- to_info / info.relative_to(from_info)
594
- for info in from_infos
+ to_info / info.relative_to(from_info) for info in from_infos
595
)
596
597
with ThreadPoolExecutor(max_workers=self.JOBS) as executor:
@@ -602,9 +601,7 @@ def _download_dir(
602
601
file_mode=file_mode,
603
dir_mode=dir_mode,
604
605
- futures = executor.map(
606
- download_files, from_infos, to_infos
607
- )
+ futures = executor.map(download_files, from_infos, to_infos)
608
with Tqdm(
609
futures,
610
total=len(from_infos),
0 commit comments