Skip to content

Commit

Permalink
minor log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gasse committed Nov 8, 2024
1 parent 8712f8d commit 9727f48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ def prepare_backend(backend: str):
555, # shopping
666, # shopping
]
for task_id in vwa_massage_task_ids:
for i, task_id in enumerate(vwa_massage_task_ids):
gym_id = f"browsergym/visualwebarena.{task_id}"
logger.info(
f"VisualWebArena instance massaging {task_id} / {len(vwa_massage_task_ids)} ({gym_id} reset)"
f"VisualWebArena instance massaging {i} / {len(vwa_massage_task_ids)} ({gym_id} reset)"
)
env = gym.make(gym_id)
try:
Expand Down

0 comments on commit 9727f48

Please sign in to comment.