(self, text, seconds=2.0)
| 280 | self._show_info = not self._show_info |
| 281 | |
| 282 | def notification(self, text, seconds=2.0): |
| 283 | self._notifications.set_text(text, seconds=seconds) |
| 284 | |
| 285 | def error(self, text): |
| 286 | self._notifications.set_text('Error: %s' % text, (255, 0, 0)) |
no test coverage detected