We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be50c5e commit 943073eCopy full SHA for 943073e
pybullet_tree_sim/utils/mesh_downloader.py
@@ -65,6 +65,10 @@ def unzip(zip_file: str):
65
print(f"Extracting file {zip_file}")
66
with zipfile.ZipFile(zip_file, "r") as zipper:
67
zipper.extractall(os.path.dirname(zip_file))
68
+ print(f"Files extracted")
69
+
70
+ if not os.path.exists(meshes_path):
71
+ print(f"Cannot find path {meshes_path}, error with process. Try running the file directly.")
72
return
73
74
0 commit comments