Internal changes.

PiperOrigin-RevId: 881291880
Change-Id: I9b43470802651b823507ee2691ba5216126d72ab
This commit is contained in:
Haroon Qureshi
2026-03-10 01:55:23 -07:00
committed by Copybara-Service
parent dade2d8c3e
commit fe6c81ed93
+5 -1
View File
@@ -56,10 +56,14 @@ from mujoco._constants import *
from mujoco._enums import *
from mujoco._errors import *
from mujoco._functions import *
from mujoco._render import *
from mujoco._specs import *
from mujoco._structs import *
try:
from mujoco._render import * # pytype: disable=import-error
except ImportError:
pass
try:
from mujoco.rendering.classic.renderer import Renderer # pytype: disable=import-error
except ImportError: