File size: 301 Bytes
16f1ab9 | 1 2 3 4 5 6 7 8 9 10 11 12 | """EnvHub entrypoint for toy-sorting task.
This module follows the LeRobot EnvHub contract: provide a `make_env` function
at repo root so EnvHub can load the task via trust_remote_code.
"""
from __future__ import annotations
from manipulator_learning.envhub import make_env
__all__ = ["make_env"]
|