Skip to content

Commit

Permalink
Merge pull request #33 from Simple-Robotics/topic/examples
Browse files Browse the repository at this point in the history
Fix examples
  • Loading branch information
edantec authored Jan 6, 2025
2 parents b7c7041 + 6c28c71 commit 1b7c6bb
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 1b7c6bb

Please sign in to comment.