This handles the connection to the viewer
(self)
| 644 | self.game.end_turn() |
| 645 | |
| 646 | def viewer_handler(self): |
| 647 | ''' |
| 648 | This handles the connection to the viewer |
| 649 | ''' |
| 650 | for message in self.game.get_viewer_messages(): |
| 651 | # TODO check this schema works for the viewer |
| 652 | self.send_message(message) |
| 653 | |
| 654 | def handle(self): |
| 655 | ''' |
no test coverage detected