(self)
| 18 | super().__init__(**kwargs) |
| 19 | |
| 20 | def ready(self): |
| 21 | self.stack.props.visible_child_name = "ready" |
| 22 | self.props.tooltip_text = _("Listen") |
| 23 | self.progress_bar.props.visible = False |
| 24 | |
| 25 | def progress(self, fraction: float): |
| 26 | if self.stack.props.visible_child_name != "progress": |
no outgoing calls
no test coverage detected