(self, _)
| 114 | os.write(self.draw_trigger, "TRIGGER") |
| 115 | |
| 116 | def process_trigger(self, _): |
| 117 | while True: |
| 118 | try: |
| 119 | message = self.message_queue.get_nowait() |
| 120 | self.process_message(message) |
| 121 | except Queue.Empty: |
| 122 | break |
| 123 | |
| 124 | self.loop.draw_screen() |
| 125 | |
| 126 | def _animate_waiter(self): |
| 127 | if self.seen_message: |
nothing calls this directly
no test coverage detected