Update docs/source/adding_benchmarks.mdx

Co-authored-by: Khalil Meftah <khalil.meftah@huggingface.co>
Signed-off-by: Pepijn <138571049+pkooij@users.noreply.github.com>
This commit is contained in:
Pepijn
2026-04-03 13:50:07 +02:00
committed by GitHub
parent 90e614f6b9
commit c434f355a2
+1 -1
View File
@@ -138,7 +138,7 @@ Each `EnvConfig` subclass declares two dicts that tell the policy what to expect
Create a `gym.Env` subclass that wraps the third-party simulator:
```python
class MyBenchmarkEnv(gym.Env):
class MyBenchmarkConfig(EnvConfig):
metadata = {"render_modes": ["rgb_array"], "render_fps": <fps>}
def __init__(self, task_suite, task_id, ...):