Path 1: 12 calls (1.0)

Title (12)

1def visit_title(self, layout: Title) -> None:
2        title = "".join(list(self.compute_content(layout)))
3        self.writeln(title)
4        try:
5            self.writeln(TITLE_UNDERLINES[self.section] * len(title))
6        except IndexError:
7            print("FIXME TITLE TOO DEEP. TURNING TITLE INTO TEXT")