(element: ET.Element)
| 127 | |
| 128 | |
| 129 | def is_rss_outline(element: ET.Element) -> bool: |
| 130 | return ( |
| 131 | element.tag == "outline" |
| 132 | and element.attrib.get("type") == "rss" |
| 133 | and "xmlUrl" in element.attrib |
| 134 | ) |
| 135 | |
| 136 | |
| 137 | def get_body(tree: ET.ElementTree, path: Path) -> ET.Element: |
no outgoing calls
no test coverage detected