We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba947e1 commit 5fcb79dCopy full SHA for 5fcb79d
extensions/rcs_ur5e/src/rcs_ur5e/hw.py
@@ -21,7 +21,7 @@
21
@dataclass(kw_only=True)
22
class UR5eConfig(common.RobotConfig):
23
# Kinematics Setup
24
- robot_type : common.RobotType = common.RobotType.UR5e
+ robot_type: common.RobotType = common.RobotType.UR5e
25
kinematic_model_path = rcs.scenes["ur5e_empty_world"].mjcf_robot
26
attachment_site = "attachment_site"
27
@@ -48,7 +48,7 @@ def to_dict(self) -> dict[str, typing.Any]:
48
"lookahead_time": self.lookahead_time,
49
"gain": self.gain,
50
}
51
-
+
52
def from_dict(self, data: dict[str, typing.Any]) -> None:
53
for key, value in data.items():
54
setattr(self, key, value)
0 commit comments