(self, text, seconds=2.0)
| 569 | self._show_info = not self._show_info |
| 570 | |
| 571 | def notification(self, text, seconds=2.0): |
| 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)) |
no test coverage detected