Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Jun 13, 2024
1 parent 8ae7259 commit eef70d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/src/healthstatus/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,10 @@ def test_files(testname: str, files: tuple[Path, ...], save_results: bool) -> No
dandiset, asset_paths = dandiset_cache[path]
except KeyError:
dandiset = Dandiset(
path=path, reports_root=Path.cwd(), versions=pkg_versions
identifier=path.name,
path=path,
reports_root=Path.cwd(),
versions=pkg_versions,
)
asset_paths = anyio.run(dandiset.get_asset_paths)
dandiset_cache[path] = (dandiset, asset_paths)
Expand Down

0 comments on commit eef70d9

Please sign in to comment.