Skip to content

Commit

Permalink
Ruta's rearrange study progress_str changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rpartsey committed Nov 4, 2023
1 parent 4b71aa2 commit a655dfd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/siro_sandbox/app_states/app_state_free_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _update_help_text(self):
self._episode_helper.num_iter_episodes
- self._episode_helper.num_episodes_done
)
progress_str = f"{num_episodes_remaining} episodes remaining"
progress_str = f"{num_episodes_remaining} episodes left"
self._sandbox_service.text_drawer.add_text(
progress_str,
TextOnScreenAlignment.TOP_RIGHT,
Expand Down
2 changes: 1 addition & 1 deletion examples/siro_sandbox/app_states/app_state_rearrange.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def _update_help_text(self):
self._episode_helper.num_iter_episodes
- self._episode_helper.num_episodes_done
)
progress_str = f"{num_episodes_remaining} episodes remaining"
progress_str = f"{num_episodes_remaining} episodes left"
self._sandbox_service.text_drawer.add_text(
progress_str,
TextOnScreenAlignment.TOP_RIGHT,
Expand Down
2 changes: 1 addition & 1 deletion examples/siro_sandbox/app_states/app_state_socialnav.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def _update_help_text(self):
self._episode_helper.num_iter_episodes
- self._episode_helper.num_episodes_done
)
progress_str = f"{num_episodes_remaining} episodes remaining"
progress_str = f"{num_episodes_remaining} episodes left"
self._sandbox_service.text_drawer.add_text(
progress_str,
TextOnScreenAlignment.TOP_RIGHT,
Expand Down

0 comments on commit a655dfd

Please sign in to comment.