Skip to content

Commit

Permalink
Suppress warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iory committed Nov 5, 2024
1 parent 5c4fb32 commit 73f06ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ros/kxr_models/python/kxr_models/download_urdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,7 @@ def download_urdf_mesh_files(namespace=None):
while not osp.exists(compressed_urdf_path):
rospy.loginfo(f"Waiting {compressed_urdf_path} from server")
rospy.sleep(1.0)
gdown.cached_download(url=server_url, path=compressed_urdf_path)
gdown.cached_download(url=server_url,
hash=f'md5:{urdf_hash}',
path=compressed_urdf_path)
gdown.extractall(osp.join(kxr_models_path, "models", "urdf", f"{urdf_hash}.tar.gz"))

0 comments on commit 73f06ff

Please sign in to comment.