In action_simulator.py, line 238, the function simulate_single() ends with
return simulation.simulation_status, simulation.images
and I think it's should be corrected to
return simulation.status, simulation.images
since Simulation has now a status attribute and not simulation_status.
In action_simulator.py, line 238, the function simulate_single() ends with
return simulation.simulation_status, simulation.images
and I think it's should be corrected toreturn simulation.status, simulation.images
since Simulation has now a status attribute and not simulation_status.Thanks.