10 lines
342 B
Python
10 lines
342 B
Python
"""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)
|