(sections: dict[str, str], name: str)
| 195 | |
| 196 | |
| 197 | def section_value(sections: dict[str, str], name: str) -> str: |
| 198 | for key, value in sections.items(): |
| 199 | if key.casefold() == name.casefold(): |
| 200 | return value |
| 201 | return "" |
| 202 | |
| 203 | |
| 204 | def resolve_category(labels: list[str], body: str) -> str: |
no test coverage detected