(line: str)
| 605 | |
| 606 | |
| 607 | def figure_status_text(line: str) -> str: |
| 608 | stripped = line.strip() |
| 609 | if not stripped.startswith("> 当前状态:"): |
| 610 | return "" |
| 611 | return stripped.removeprefix("> 当前状态:").strip() |
| 612 | |
| 613 | |
| 614 | def has_accepted_usable_placeholder_reason(status_text: str) -> bool: |
no outgoing calls
no test coverage detected