Skip to content

Commit

Permalink
remove spaces in mesh name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipuch committed Jan 22, 2025
1 parent 79cae60 commit 6ec826e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyorerun/biorbd_components/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TransformableMeshUpdater(Component):
"""

def __init__(self, name: str, mesh: Trimesh, transform_callable: callable):
filename = mesh.metadata["file_name"] if "file_name" in mesh.metadata else mesh.metadata["header"]
filename = mesh.metadata["file_name"] if "file_name" in mesh.metadata else mesh.metadata["header"].replace(" ", "")
self.__name = name + "/" + filename
self.__mesh = mesh

Expand Down

0 comments on commit 6ec826e

Please sign in to comment.