Skip to content

Commit 475353f

Browse files
authored
Merge pull request #94 from robomics/fix/stripepy-download
Fix bug when running stripepy-call --unit-test
2 parents e6940aa + 757419f commit 475353f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stripepy/cli/download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def _download_multiple(names: Sequence[str], output_paths: Sequence[pathlib.Path
229229

230230
for name, output_path in zip(names, output_paths):
231231
t0 = time.time()
232-
dset_name, config = _lookup_dataset(name, None, math.inf)
232+
dset_name, config = _lookup_dataset(name, None, math.inf, include_private=True)
233233

234234
if output_path.exists():
235235
logger.info('found existing file "%s"', output_path)

0 commit comments

Comments
 (0)