Files
sci-gui-agent-benchmark/desktop_env/evaluators/getters/misc.py

9 lines
154 B
Python

from typing import TypeVar
R = TypeVar("Rule")
def get_rule(env, config: R) -> R:
"""
Returns the rule as-is.
"""
return config["rules"]