From 17a4447cefa24e7b5f5710ed26f2ebd78dbb56e1 Mon Sep 17 00:00:00 2001 From: Simon Alibert Date: Thu, 20 Mar 2025 14:45:18 +0100 Subject: [PATCH] Add debugging init --- lerobot/common/debugging/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lerobot/common/debugging/__init__.py diff --git a/lerobot/common/debugging/__init__.py b/lerobot/common/debugging/__init__.py new file mode 100644 index 000000000..e137aa31f --- /dev/null +++ b/lerobot/common/debugging/__init__.py @@ -0,0 +1,3 @@ +from .motors_bus import visualize_motors_bus + +__all__ = ["visualize_motors_bus"]