Print text for end of game and exits.
(self)
| 125 | ) # noqa:WPS305 |
| 126 | |
| 127 | def user_win(self) -> None: |
| 128 | """Print text for end of game and exits.""" |
| 129 | print_wrong(f"{self._word_string_to_show} YOU WON", self._print_function) # noqa:WPS305 |
| 130 | |
| 131 | def game_process(self, user_character: str) -> bool: |
| 132 | # noqa: DAR201 |
no test coverage detected