(body: ET.Element)
| 425 | |
| 426 | |
| 427 | def top_level_categories(body: ET.Element) -> List[ET.Element]: |
| 428 | return [ |
| 429 | child |
| 430 | for child in list(body) |
| 431 | if child.tag == "outline" and not is_rss_outline(child) |
| 432 | ] |
| 433 | |
| 434 | |
| 435 | def category_name(outline: ET.Element) -> str: |
no test coverage detected