Skip to content

Commit 6c84e8a

Browse files
h-joocopybara-github
authored andcommitted
Internal change
PiperOrigin-RevId: 753039066 Change-Id: I8c054de816a922426da58993036dc9e626472ad0
1 parent 024adbe commit 6c84e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mujoco_playground/_src/locomotion/h1/joystick.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def step(self, state: mjx_env.State, action: jax.Array) -> mjx_env.State:
149149
motor_targets = self._default_pose + action * self._config.action_scale
150150
motor_targets = jp.clip(motor_targets, self._lowers, self._uppers)
151151
data = mjx_env.step(
152-
self.mjx_model, state.data, motor_targets, self._n_frames
152+
self.mjx_model, state.data, motor_targets, self._n_frames # pytype: disable=attribute-error
153153
)
154154

155155
obs = self._get_obs(data, state.info, state.obs, noise_rng)

0 commit comments

Comments
 (0)