Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
src/openenv_core/__init__.py
CHANGED
|
@@ -39,7 +39,15 @@ def _alias(name: str) -> None:
|
|
| 39 |
sys.modules[f"{__name__}.{name}"] = importlib.import_module(target)
|
| 40 |
|
| 41 |
|
| 42 |
-
for _child in (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
try:
|
| 44 |
_alias(_child)
|
| 45 |
except ModuleNotFoundError: # pragma: no cover - defensive
|
|
|
|
| 39 |
sys.modules[f"{__name__}.{name}"] = importlib.import_module(target)
|
| 40 |
|
| 41 |
|
| 42 |
+
for _child in (
|
| 43 |
+
"client_types",
|
| 44 |
+
"containers",
|
| 45 |
+
"env_client",
|
| 46 |
+
"env_server",
|
| 47 |
+
"rubrics",
|
| 48 |
+
"tools",
|
| 49 |
+
"utils",
|
| 50 |
+
):
|
| 51 |
try:
|
| 52 |
_alias(_child)
|
| 53 |
except ModuleNotFoundError: # pragma: no cover - defensive
|