From c434f355a272e6ae9880c9b858f8c84203f96e67 Mon Sep 17 00:00:00 2001 From: Pepijn <138571049+pkooij@users.noreply.github.com> Date: Fri, 3 Apr 2026 13:50:07 +0200 Subject: [PATCH] Update docs/source/adding_benchmarks.mdx Co-authored-by: Khalil Meftah Signed-off-by: Pepijn <138571049+pkooij@users.noreply.github.com> --- docs/source/adding_benchmarks.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/adding_benchmarks.mdx b/docs/source/adding_benchmarks.mdx index db599bb3c..2788eca6e 100644 --- a/docs/source/adding_benchmarks.mdx +++ b/docs/source/adding_benchmarks.mdx @@ -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": } def __init__(self, task_suite, task_id, ...):