Skip to content

Commit 070eca8

Browse files
committed
fix file path
1 parent 742bfb4 commit 070eca8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nwbwidgets/utils/dandi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def list_dandiset_files(dandiset_id: str):
1313
dandiset = client.get_dandiset(dandiset_id=dandiset_id, version_id="draft")
1414
return sorted(
1515
[
16-
i.dict().get("path").split("/")[-1]
16+
i.dict().get("path")
1717
for i in dandiset.get_assets()
1818
if i.dict().get("path").endswith(".nwb")
1919
]

0 commit comments

Comments
 (0)