From fc516ee3c1eacbb43cf82909434d7e07ae6ec6b7 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 8 Apr 2025 14:06:17 -0400 Subject: [PATCH] revert import order --- python/mujoco/viewer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/mujoco/viewer.py b/python/mujoco/viewer.py index e78e1229..234bf784 100644 --- a/python/mujoco/viewer.py +++ b/python/mujoco/viewer.py @@ -27,10 +27,9 @@ from typing import Callable, List, Optional, Tuple, Union import weakref import glfw -import numpy as np - import mujoco from mujoco import _simulate +import numpy as np if not glfw._glfw: # pylint: disable=protected-access raise RuntimeError('GLFW dynamic library handle is not available')