diff --git a/omnigibson/objects/controllable_object.py b/omnigibson/objects/controllable_object.py index 81da5be53..dc996f99b 100644 --- a/omnigibson/objects/controllable_object.py +++ b/omnigibson/objects/controllable_object.py @@ -310,9 +310,10 @@ class ControllableObject(BaseObject): # joint positions / velocities are set for unused_dof in unused_dofs: unused_joint = self._joints[self.dof_names_ordered[unused_dof]] - assert not unused_joint.driven, \ - (f"All unused joints not mapped to any controller should not have DriveAPI attached to it! " - f"However, joint {unused_joint.name} is driven!") + assert not unused_joint.driven, ( + f"All unused joints not mapped to any controller should not have DriveAPI attached to it! " + f"However, joint {unused_joint.name} is driven!" + ) unused_joint.set_control_type( control_type=ControlType.NONE, kp=None, diff --git a/omnigibson/robots/r1.py b/omnigibson/robots/r1.py index 27954f07b..c5d6980ea 100644 --- a/omnigibson/robots/r1.py +++ b/omnigibson/robots/r1.py @@ -195,7 +195,7 @@ class R1(HolonomicBaseRobot, ArticulatedTrunkRobot, MobileManipulationRobot): @property def base_link_names(self): - return ["base_link"] #, "wheel_link1", "wheel_link2", "wheel_link3"] + return ["base_link"] # , "wheel_link1", "wheel_link2", "wheel_link3"] @property def trunk_link_names(self):