Adding type suppressions for pyrefly

PiperOrigin-RevId: 950703735
Change-Id: I6b6d5826a0dd1f4c0a1cbb2a46aee944cd60d884
This commit is contained in:
Hana Joo
2026-07-20 02:39:22 -07:00
committed by Copybara-Service
parent 00abc5465f
commit 78946ca94e
30 changed files with 193 additions and 193 deletions
+2 -2
View File
@@ -325,8 +325,8 @@ def _reload(
def _physics_loop(simulate: _Simulate, loader: Optional[_InternalLoaderType]):
"""Physics loop for the GUI, to be run in a separate thread."""
m: mujoco.MjModel = None
d: mujoco.MjData = None
m: mujoco.MjModel = None # pyrefly: ignore[bad-assignment]
d: mujoco.MjData = None # pyrefly: ignore[bad-assignment]
ctrl_noise = np.array([])
reload = True