(body: str)
| 222 | |
| 223 | |
| 224 | def resolve_description(body: str) -> str: |
| 225 | sections = markdown_sections(body) |
| 226 | return cleanup_markdown_text(section_value(sections, 'Description')) |
| 227 | |
| 228 | |
| 229 | def load_token(explicit_token: str | None) -> str | None: |
no test coverage detected