Skip to content

Commit

Permalink
Add test line.
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Jul 17, 2024
1 parent 91b9870 commit 45e9322
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/abc_atlas_access/abc_atlas_cache/cloud_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ def list_all_downloaded_manifests(self) -> list:
Return a list of all of the manifest files that have been
downloaded for this dataset
"""
# Test line, remove later.
print("BasicLocalCache.list_all_downloaded_manifests",
self.cache_dir.glob("releases/*/manifest.json"))
output = [self.manifest_prefix + str(x).split('releases/')[-1]
for x in self.cache_dir.glob("releases/*/manifest.json")]
output.sort()
Expand Down

0 comments on commit 45e9322

Please sign in to comment.