(self, decision)
| 349 | |
| 350 | print("Example 21") |
| 351 | def receive_report(self, decision): |
| 352 | last = self.guesses[-1] |
| 353 | if decision == CORRECT: |
| 354 | self.secret = last |
| 355 | |
| 356 | print(f"Server: {last} is {decision}") |
| 357 | |
| 358 | def clear_state(self): |
| 359 | self.lower = None |