From 202a493c141e823373bc27b3f40500323aecc808 Mon Sep 17 00:00:00 2001 From: Michel Aractingi Date: Wed, 17 Dec 2025 18:25:21 +0100 Subject: [PATCH] missing imports processor wallx --- src/lerobot/policies/wall_x/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lerobot/policies/wall_x/__init__.py b/src/lerobot/policies/wall_x/__init__.py index be4542fde..16fd2c8ab 100644 --- a/src/lerobot/policies/wall_x/__init__.py +++ b/src/lerobot/policies/wall_x/__init__.py @@ -15,5 +15,7 @@ # limitations under the License. from .configuration_wall_x import WallXConfig +from .modeling_wall_x import WallXPolicy +from .processor_wall_x import make_wall_x_pre_post_processors -__all__ = ["WallXConfig"] +__all__ = ["WallXConfig", "WallXPolicy", "make_wall_x_pre_post_processors"]