(self, trace_path: str | Path)
| 226 | return (observation, info) |
| 227 | |
| 228 | def save_trace(self, trace_path: str | Path) -> None: |
| 229 | if self.save_trace_enabled: |
| 230 | self.context.tracing.stop(path=trace_path) |
| 231 | |
| 232 | def close(self) -> None: |
| 233 | if self.reset_finished: |
nothing calls this directly
no outgoing calls
no test coverage detected