Skip to content

Commit 5fcb79d

Browse files
author
Johannes Hechtl
committed
formatting
1 parent ba947e1 commit 5fcb79d

File tree

1 file changed

+2
-2
lines changed
  • extensions/rcs_ur5e/src/rcs_ur5e

1 file changed

+2
-2
lines changed

extensions/rcs_ur5e/src/rcs_ur5e/hw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
@dataclass(kw_only=True)
2222
class UR5eConfig(common.RobotConfig):
2323
# Kinematics Setup
24-
robot_type : common.RobotType = common.RobotType.UR5e
24+
robot_type: common.RobotType = common.RobotType.UR5e
2525
kinematic_model_path = rcs.scenes["ur5e_empty_world"].mjcf_robot
2626
attachment_site = "attachment_site"
2727

@@ -48,7 +48,7 @@ def to_dict(self) -> dict[str, typing.Any]:
4848
"lookahead_time": self.lookahead_time,
4949
"gain": self.gain,
5050
}
51-
51+
5252
def from_dict(self, data: dict[str, typing.Any]) -> None:
5353
for key, value in data.items():
5454
setattr(self, key, value)

0 commit comments

Comments
 (0)