(self, name: str)
| 11 | |
| 12 | class ModelProfile: |
| 13 | def __init__(self, name: str): |
| 14 | self.name = name |
| 15 | self.steps = [] |
| 16 | self.failed_commands = 0 |
| 17 | self.failed_command_types = {} |
| 18 | self.tournaments = [] |
| 19 | |
| 20 | @property |
| 21 | def steps_per_round(self) -> float: |
nothing calls this directly
no outgoing calls
no test coverage detected