(self, text, seconds=2.0)
| 467 | self._show_info = not self._show_info |
| 468 | |
| 469 | def notification(self, text, seconds=2.0): |
| 470 | self._notifications.set_text(text, seconds=seconds) |
| 471 | |
| 472 | def error(self, text): |
| 473 | self._notifications.set_text('Error: %s' % text, (255, 0, 0)) |
no test coverage detected