(self)
| 75 | ) |
| 76 | |
| 77 | def get_log_object(self): |
| 78 | return self.agent.context.log.log( |
| 79 | type="progress", |
| 80 | heading=self.get_heading(), |
| 81 | content="", |
| 82 | kvps=self.args, |
| 83 | ) |
| 84 | |
| 85 | def get_heading(self, text: str = "", done: bool = False): |
| 86 | done_icon = " icon://done_all" if done else "" |
nothing calls this directly
no test coverage detected