cmvr_ai_lab/source/engineai_lab/tasks/__init__.py

10 lines
342 B
Python
Raw Permalink Normal View History

2026-07-13 10:52:46 +08:00
"""Package containing task implementations for various robotic environments."""
from isaaclab_tasks.utils import import_packages
from .velocity import * # noqa
# The blacklist is used to prevent importing configs from sub-packages
_BLACKLIST_PKGS = ["utils"]
# Import all configs in this package
import_packages(__name__, _BLACKLIST_PKGS)