Method: pylint.reporters.ureports.text_writer.TextWriter.visit_section
Calls: 12, Exceptions: 0, Paths: 1Back
Path 1: 12 calls (1.0)
Section (12)
1def visit_section(self, layout: Section) -> None:
2 """Display a section as text."""
3 self.section += 1
4 self.writeln()
5 self.format_children(layout)
6 self.section -= 1
7 self.writeln()