Update Wall-X to 1.1.0 (#104)

This commit is contained in:
Starrick Liu
2026-06-15 11:40:00 +08:00
committed by GitHub
parent e23a586846
commit 72834e7de5
200 changed files with 33916 additions and 16771 deletions
+16
View File
@@ -0,0 +1,16 @@
"""Data backend registration.
Importing this package registers the default shipped backends. Additional
backends are loaded by plugin modules so their names and dependencies do not
have to appear in the default import path.
"""
import importlib
from wall_x.data._registry import record_import_error
for _name in ("lerobot",):
try:
importlib.import_module(f"wall_x.data.backends.{_name}")
except ImportError as _e:
record_import_error(_name, _e)