(self, key: str)
| 37 | } |
| 38 | |
| 39 | def _game_arg(self, key: str): |
| 40 | return getattr(self, "game_config", {}).get("args", {}).get(key, self.default_args[key]) |
| 41 | |
| 42 | def _episodes_per_round(self) -> int: |
| 43 | return int(self.game_config.get("args", {}).get("episodes_per_round", self.game_config["sims_per_round"])) |
no test coverage detected