(self)
| 138 | self.ale.act(0) |
| 139 | |
| 140 | def reset(self): |
| 141 | if self.ale.game_over(): |
| 142 | self._restart_episode() |
| 143 | return self._current_state() |
| 144 | |
| 145 | def render(self, *args, **kwargs): |
| 146 | pass # visualization for this env is through the viz= argument when creating the player |
no test coverage detected