Method: pylint.reporters.ureports.nodes.EvaluationSection.__init__
Calls: 112, Exceptions: 0, Paths: 1Back
Path 1: 112 calls (1.0)
'Your code has been rated at 7.50/10' (28) 'Your code has been rated at 0.00/10' (25) 'Your code has been rated at 10.00/10' (23) 'Your code has been ...
() (112)
1def __init__(self, message: str, children: Iterable[Text | str] = ()) -> None:
2 super().__init__(children=children)
3 title = Paragraph()
4 title.append(Text("-" * len(message)))
5 self.append(title)
6 message_body = Paragraph()
7 message_body.append(Text(message))
8 self.append(message_body)