mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-16 09:09:48 +00:00
Remove useless import and args
This commit is contained in:
@@ -75,9 +75,9 @@ def _make_reachy2_sdk_mock():
|
||||
"_on_set",
|
||||
)
|
||||
|
||||
def __init__(self, present_position=0.0, initial_goal=None, on_set=None):
|
||||
def __init__(self, present_position=0.0, on_set=None):
|
||||
self.present_position = present_position
|
||||
self._goal_position = initial_goal
|
||||
self._goal_position = present_position
|
||||
self._on_set = on_set
|
||||
|
||||
@property
|
||||
@@ -109,7 +109,6 @@ def _make_reachy2_sdk_mock():
|
||||
joints = {
|
||||
k: JointSpy(
|
||||
present_position=float(i),
|
||||
initial_goal=float(i) + 0.1,
|
||||
on_set=_on_any_goal_set,
|
||||
)
|
||||
for i, k in enumerate(REACHY2_JOINTS.values())
|
||||
|
||||
Reference in New Issue
Block a user