(self)
| 59 | HEARTBEAT_ICON = u'\u2764' |
| 60 | |
| 61 | def __init__(self): |
| 62 | self.message_queue = Queue.Queue() |
| 63 | self.message_list = [] |
| 64 | self.counter_text = urwid.Text(self.COUNTER_FORMAT.format('0', '0')) |
| 65 | self.seen_message = False |
| 66 | self._heartbeat_is_animating = False |
| 67 | self.setup_widgets() |
| 68 | self.setup_certstream_listener() |
| 69 | self._animate_waiter() |
| 70 | |
| 71 | |
| 72 | def setup_widgets(self): |
nothing calls this directly
no test coverage detected