(self, text)
| 572 | self._notifications.set_text(text, seconds=seconds) |
| 573 | |
| 574 | def error(self, text): |
| 575 | self._notifications.set_text('Error: %s' % text, (255, 0, 0)) |
| 576 | |
| 577 | def render(self, display): |
| 578 | if self._show_info: |
no test coverage detected