Skip to content

Commit

Permalink
Fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
edantec committed Jan 6, 2025
1 parent b7c7041 commit 6c28c71
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/go2_fulldynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@

""" Initialize simulation"""
device = BulletRobot(
model_handler.getControlledJointNames(),
model_handler.getModel().names,
erd.getModelPath(URDF_SUBPATH),
URDF_SUBPATH,
1e-3,
Expand Down
2 changes: 1 addition & 1 deletion examples/go2_kinodynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@

""" Initialize simulation"""
device = BulletRobot(
model_handler.getControlledJointNames(),
model_handler.getModel().names,
erd.getModelPath(URDF_SUBPATH),
URDF_SUBPATH,
1e-3,
Expand Down
2 changes: 1 addition & 1 deletion examples/talos_centroidal.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@

""" Initialize simulation"""
device = BulletRobot(
model_handler.getControlledJointNames(),
model_handler.getModel().names,
erd.getModelPath(URDF_SUBPATH),
URDF_SUBPATH,
1e-3,
Expand Down
2 changes: 1 addition & 1 deletion examples/talos_fulldynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
""" Initialize simulation"""

device = BulletRobot(
model_handler.getControlledJointNames(),
model_handler.getModel().names,
erd.getModelPath(URDF_SUBPATH),
URDF_SUBPATH,
1e-3,
Expand Down
2 changes: 1 addition & 1 deletion examples/talos_kinodynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@

""" Initialize simulation"""
device = BulletRobot(
model_handler.getControlledJointNames(),
model_handler.getModel().names,
erd.getModelPath(URDF_SUBPATH),
URDF_SUBPATH,
1e-3,
Expand Down

0 comments on commit 6c28c71

Please sign in to comment.