From 87fef10f89aee10145a2a19ec89e9b99b8380101 Mon Sep 17 00:00:00 2001 From: Remi Cadene Date: Mon, 14 Oct 2024 16:30:10 +0200 Subject: [PATCH] small fix --- lerobot/common/robot_devices/control_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lerobot/common/robot_devices/control_utils.py b/lerobot/common/robot_devices/control_utils.py index 9855fee11..a93b79498 100644 --- a/lerobot/common/robot_devices/control_utils.py +++ b/lerobot/common/robot_devices/control_utils.py @@ -245,7 +245,7 @@ def control_loop( robot.connect() if events is None: - events = {} + events = {"exit_early": False} if teleoperate and policy is not None: raise ValueError("When `teleoperate` is True, `policy` should be None.")