Skip to content

Commit

Permalink
remove extraneous default arg
Browse files Browse the repository at this point in the history
  • Loading branch information
bhlieberman committed May 9, 2024
1 parent c840c02 commit f86d3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biobricks/dvc_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _link_cache_to_brick(self, cache_path, brick_path):
else:
os.symlink(cache_path, brick_path)

def fetch_outs(self, brick, prefixes=['brick/', 'data/', 'list/']) -> tuple[list[dict], int]:
def fetch_outs(self, brick, prefixes=['brick/', 'data/']) -> tuple[list[dict], int]:
dvc_lock = brick.get_dvc_lock()
stages = [stage for stage in dvc_lock.get('stages', []).values()]
all_outs = [out for stage in stages for out in stage.get('outs', [])]
Expand Down

0 comments on commit f86d3d3

Please sign in to comment.