Method: pylint.testutils.output_line.OutputLine.to_csv
Calls: 5, Exceptions: 0, Paths: 1Back
Path 1: 5 calls (1.0)
('disallowed-name', '1', '0', 'None', 'None', '', 'Disallowed name "foo"', 'HIGH') (1) ('missing-docstring', '1', '2', '1', '3', 'obj', 'msg', 'HIGH')...
1def to_csv(self) -> tuple[str, str, str, str, str, str, str, str]:
2 """Convert an OutputLine to a tuple of string to be written by a
3 csv-writer.
4 """
5 return (
6 str(self.symbol),
7 str(self.lineno),
8 str(self.column),
9 str(self.end_lineno),
10 str(self.end_column),
11 str(self.object),
12 str(self.msg),
13 str(self.confidence),
14 )