diff --git a/biobricks/dvc_fetcher.py b/biobricks/dvc_fetcher.py index 4720181..e567a4c 100644 --- a/biobricks/dvc_fetcher.py +++ b/biobricks/dvc_fetcher.py @@ -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', [])]