(xml_file_path)
| 8 | import matplotlib.patches as patches |
| 9 | |
| 10 | def parse_xml_with_recovery(xml_file_path): |
| 11 | parser = etree.XMLParser(recover=True) |
| 12 | tree = etree.parse(xml_file_path, parser) |
| 13 | return tree.getroot() |
| 14 | |
| 15 | def parse_poster_xml(xml_file): |
| 16 | """ |
no test coverage detected