Skip to content

Commit e9e33b2

Browse files
authored
Fixes type name for tendon properties in from_files config (#3941)
Tendon imports in from_files_cfg had a typo that prevented importing. This is resolved in this commit. ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [X] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [X] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [ ] I have made corresponding changes to the documentation - [X] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [X] I have added my name to the `CONTRIBUTORS.md` or my name already exists there Signed-off-by: Kyle Morgenstein <34984693+KyleM73@users.noreply.github.com>
1 parent c627940 commit e9e33b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/isaaclab/isaaclab/sim/spawners/from_files/from_files_cfg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class FileCfg(RigidObjectSpawnerCfg, DeformableObjectSpawnerCfg):
3939
articulation_props: schemas.ArticulationRootPropertiesCfg | None = None
4040
"""Properties to apply to the articulation root."""
4141

42-
fixed_tendons_props: schemas.FixedTendonsPropertiesCfg | None = None
42+
fixed_tendons_props: schemas.FixedTendonPropertiesCfg | None = None
4343
"""Properties to apply to the fixed tendons (if any)."""
4444

45-
spatial_tendons_props: schemas.SpatialTendonsPropertiesCfg | None = None
45+
spatial_tendons_props: schemas.SpatialTendonPropertiesCfg | None = None
4646
"""Properties to apply to the spatial tendons (if any)."""
4747

4848
joint_drive_props: schemas.JointDrivePropertiesCfg | None = None

0 commit comments

Comments
 (0)