Skip to content

Commit

Permalink
Fix bug when running stripepy-call --unit-test
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Jan 13, 2025
1 parent 53c5e5c commit 757419f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stripepy/cli/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def _download_multiple(names: Sequence[str], output_paths: Sequence[pathlib.Path

for name, output_path in zip(names, output_paths):
t0 = time.time()
dset_name, config = _lookup_dataset(name, None, math.inf)
dset_name, config = _lookup_dataset(name, None, math.inf, include_private=True)

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

0 comments on commit 757419f

Please sign in to comment.