(self)
| 32 | |
| 33 | @override |
| 34 | def get_observation(self) -> dict: |
| 35 | if self._last_obs is None: |
| 36 | raise RuntimeError("Observation is not set. Call reset() first.") |
| 37 | |
| 38 | return self._last_obs # type: ignore |
| 39 | |
| 40 | @override |
| 41 | def apply_action(self, action: dict) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected