(self, name: str)
| 23 | |
| 24 | |
| 25 | class PlayerStats: |
| 26 | def __init__(self, name: str): |
| 27 | self.name = name |
| 28 | self.invalid_reason: str = "" |
| 29 | self.score: float = 0.0 |
| 30 | self.valid_submit = False |
| 31 | |
| 32 | def to_dict(self) -> dict[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected