(self)
| 328 | return f'{self.__class__}("{self._hand}")' |
| 329 | |
| 330 | def __str__(self): |
| 331 | return self._hand |
| 332 | |
| 333 | # Rich comparison operators (used in list.sort() and sorted() builtin functions) |
| 334 | # Note that this is not part of the problem but another extra feature where |
no outgoing calls