Skip to content

Commit ce5a88d

Browse files
committed
Fix dataset extraction not working
1 parent 269c672 commit ce5a88d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/intrinsic_ipd/download_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def main():
2626
for dataset in selected_datasets:
2727
zip_path = download_dataset(dataset, camera, args.root)
2828
if args.extract and zip_path:
29-
extract(zip_path)
29+
extract(zip_path, args.root)
3030

3131
#download the cad_models
32-
print(f"Downloading cad models to {args.folder}/models")
32+
print(f"Downloading cad models to {args.root}/models")
3333
download_cads(args.root)
3434

3535
if __name__ == "__main__":

0 commit comments

Comments
 (0)