(points)
| 48 | print(f"<h2>{getText(title.childNodes)}</h2>") |
| 49 | |
| 50 | def handlePoints(points): |
| 51 | print("<ul>") |
| 52 | for point in points: |
| 53 | handlePoint(point) |
| 54 | print("</ul>") |
| 55 | |
| 56 | def handlePoint(point): |
| 57 | print(f"<li>{getText(point.childNodes)}</li>") |
no test coverage detected
searching dependent graphs…