(config: dict, **kwargs)
| 44 | PaintVolleyArena, |
| 45 | RoboCodeArena, |
| 46 | RobotRumbleArena, |
| 47 | SCMLOneShotArena, |
| 48 | ] |
| 49 | |
| 50 | |
| 51 | # might consider postponing imports to avoid loading things we don't need |
| 52 | def get_arena(config: dict, **kwargs) -> CodeArena: |
| 53 | game = {x.name: x for x in ARENAS}.get(config["game"]["name"]) |