Skip to content

Commit ee71eff

Browse files
committed
fix: removes typo causing wrong path resolution
1 parent ccfa8d0 commit ee71eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renku/cli/_checks/files_in_datasets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def check_missing_files(client):
3131

3232
for path, dataset in client.datasets.items():
3333
for file in dataset.files:
34-
filepath = (path.parent.parent / file)
34+
filepath = (path.parent / file)
3535
if not filepath.exists():
3636
missing[str(
3737
path.parent.relative_to(client.renku_datasets_path)

0 commit comments

Comments
 (0)