Open rowingchenn opened 5 days ago
In the set_benchmark method of the GenericAgentArgs class, there is an error in the code:
set_benchmark
GenericAgentArgs
The code incorrectly attempts to access GenericAgentArgs.action_set, but the GenericAgentArgs class does not have an attribute named action_set.
GenericAgentArgs.action_set
action_set
The correct implementation should be:
self.flags.action.action_set.demo_mode = "all_blue"
In the
set_benchmark
method of theGenericAgentArgs
class, there is an error in the code:The code incorrectly attempts to access
GenericAgentArgs.action_set
, but theGenericAgentArgs
class does not have an attribute namedaction_set
.The correct implementation should be: