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 92fcdc2 commit 1a087cdCopy full SHA for 1a087cd
python/plainmp/robot_spec.py
@@ -49,7 +49,7 @@
49
def load_urdf_model_using_cache(file_path: Path, with_mesh: bool = False, deepcopy: bool = True):
50
file_path = file_path.expanduser()
51
assert file_path.exists()
52
- key = str(file_path)
+ key = f"{file_path}_{with_mesh}"
53
if key not in _loaded_urdf_models:
54
if with_mesh:
55
model = RobotModelFromURDF(urdf_file=str(file_path))
0 commit comments