(self, text, seconds=2.0)
| 506 | self._show_info = not self._show_info |
| 507 | |
| 508 | def notification(self, text, seconds=2.0): |
| 509 | self._notifications.set_text(text, seconds=seconds) |
| 510 | |
| 511 | def error(self, text): |
| 512 | self._notifications.set_text('Error: %s' % text, (255, 0, 0)) |
no test coverage detected