Skip to content

Commit

Permalink
remove debug printout
Browse files Browse the repository at this point in the history
  • Loading branch information
luigiberducci committed Nov 24, 2023
1 parent fcbbf83 commit 21d8193
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/test_f110_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ def test_auto_reset_options_in_synch_vec_env(self):
while not all(all_dones_twice) and max_steps > 0:
actions = vec_env.action_space.sample()
obss, rewards, dones, truncations, infos = vec_env.step(actions)
print(dones, all_dones_once, all_dones_twice)

all_dones_once = [all_dones_once[i] or dones[i] for i in range(num_envs)]
all_dones_twice = [all_dones_twice[i] or all_dones_once[i] for i in range(num_envs)]
Expand Down

0 comments on commit 21d8193

Please sign in to comment.