(self, name, amount)
| 294 | |
| 295 | class Player(User): |
| 296 | def __init__(self, name, amount): |
| 297 | super().__init__(name=name, chips_amount=amount, role="Player", color="CYAN") |
| 298 | self.refresh_prompt() |
| 299 | |
| 300 | def refresh_prompt(self): |
| 301 | self.prompt = "{role} [ ${remain} ] >> ({name}) : ".format( |
nothing calls this directly
no test coverage detected