(self, text: str = "", done: bool = False)
| 83 | ) |
| 84 | |
| 85 | def get_heading(self, text: str = "", done: bool = False): |
| 86 | done_icon = " icon://done_all" if done else "" |
| 87 | if not text: |
| 88 | text = f"Waiting..." |
| 89 | return f"icon://timer Wait: {text}{done_icon}" |
no outgoing calls
no test coverage detected