Skip to content

Commit 00c9684

Browse files
fix(scripts): bi so import
1 parent bbf05e3 commit 00c9684

File tree

11 files changed

+19
-3
lines changed

11 files changed

+19
-3
lines changed

docs/source/envhub_leisaac.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ from lerobot.teleoperators import ( # noqa: F401
138138
TeleoperatorConfig,
139139
make_teleoperator_from_config,
140140
so_leader,
141+
bi_so_leader,
141142
)
142143
from lerobot.utils.robot_utils import precise_sleep
143144
from lerobot.utils.utils import init_logging

examples/rtc/eval_with_real_robot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
from lerobot.robots import ( # noqa: F401
9595
Robot,
9696
RobotConfig,
97+
bi_so_follower,
9798
koch_follower,
9899
so_follower,
99100
)

src/lerobot/async_inference/robot_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
from lerobot.robots import ( # noqa: F401
5252
Robot,
5353
RobotConfig,
54+
bi_so_follower,
5455
koch_follower,
5556
make_robot_from_config,
5657
omx_follower,

src/lerobot/rl/eval_policy.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@
2222
from lerobot.policies.factory import make_policy
2323
from lerobot.robots import ( # noqa: F401
2424
RobotConfig,
25+
bi_so_follower,
2526
make_robot_from_config,
2627
so_follower,
2728
)
2829
from lerobot.teleoperators import (
30+
bi_so_leader, # noqa: F401
2931
gamepad, # noqa: F401
30-
so_leader, # noqa: F401
31-
)
32+
)
3233

3334
from .gym_manipulator import make_robot_env
3435

src/lerobot/rl/gym_manipulator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
from lerobot.processor.converters import identity_transition
5555
from lerobot.robots import ( # noqa: F401
5656
RobotConfig,
57+
bi_so_follower,
5758
make_robot_from_config,
5859
so_follower,
5960
)
@@ -66,10 +67,10 @@
6667
InverseKinematicsRLStep,
6768
)
6869
from lerobot.teleoperators import (
70+
bi_so_leader, # noqa: F401
6971
gamepad, # noqa: F401
7072
keyboard, # noqa: F401
7173
make_teleoperator_from_config,
72-
so_leader, # noqa: F401
7374
)
7475
from lerobot.teleoperators.teleoperator import Teleoperator
7576
from lerobot.teleoperators.utils import TeleopEvents

src/lerobot/scripts/lerobot_calibrate.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
from lerobot.robots import ( # noqa: F401
3737
Robot,
3838
RobotConfig,
39+
bi_so_follower,
3940
hope_jr,
4041
koch_follower,
4142
lekiwi,
@@ -46,6 +47,7 @@
4647
from lerobot.teleoperators import ( # noqa: F401
4748
Teleoperator,
4849
TeleoperatorConfig,
50+
bi_so_leader,
4951
homunculus,
5052
koch_leader,
5153
make_teleoperator_from_config,

src/lerobot/scripts/lerobot_find_joint_limits.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,15 @@
4444
from lerobot.model.kinematics import RobotKinematics
4545
from lerobot.robots import ( # noqa: F401
4646
RobotConfig,
47+
bi_so_follower,
4748
koch_follower,
4849
make_robot_from_config,
4950
omx_follower,
5051
so_follower,
5152
)
5253
from lerobot.teleoperators import ( # noqa: F401
5354
TeleoperatorConfig,
55+
bi_so_leader,
5456
gamepad,
5557
koch_leader,
5658
make_teleoperator_from_config,

src/lerobot/scripts/lerobot_record.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
from lerobot.robots import ( # noqa: F401
9595
Robot,
9696
RobotConfig,
97+
bi_so_follower,
9798
earthrover_mini_plus,
9899
hope_jr,
99100
koch_follower,
@@ -104,6 +105,7 @@
104105
from lerobot.teleoperators import ( # noqa: F401
105106
Teleoperator,
106107
TeleoperatorConfig,
108+
bi_so_leader,
107109
homunculus,
108110
koch_leader,
109111
make_teleoperator_from_config,

src/lerobot/scripts/lerobot_replay.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
from lerobot.robots import ( # noqa: F401
5454
Robot,
5555
RobotConfig,
56+
bi_so_follower,
5657
earthrover_mini_plus,
5758
hope_jr,
5859
koch_follower,

src/lerobot/scripts/lerobot_setup_motors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
from lerobot.robots import ( # noqa: F401
3232
RobotConfig,
33+
bi_so_follower,
3334
koch_follower,
3435
lekiwi,
3536
make_robot_from_config,
@@ -38,6 +39,7 @@
3839
)
3940
from lerobot.teleoperators import ( # noqa: F401
4041
TeleoperatorConfig,
42+
bi_so_leader,
4143
koch_leader,
4244
make_teleoperator_from_config,
4345
omx_leader,

0 commit comments

Comments
 (0)