Skip to content

Commit

Permalink
Fix typo in ValueError message for missing mesh
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasZiglio committed Jan 5, 2025
1 parent bc2e122 commit ce94af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genesis/ext/urdfpy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def load_meshes(filename):
if isinstance(meshes, (list, tuple, set)):
meshes = list(meshes)
if len(meshes) == 0:
raise ValueError("At least one mesh must be pmeshesent in file")
raise ValueError("At least one mesh must be present in file")
for r in meshes:
if not isinstance(r, trimesh.Trimesh):
raise TypeError("Could not load meshes from file")
Expand Down

0 comments on commit ce94af5

Please sign in to comment.