Method: pylint.utils.linterstats.LinterStats.__str__
Calls: 60, Exceptions: 0, Paths: 1Back
Path 1: 60 calls (1.0)
"{'argument': 0, 'attr': 0, 'klass': 0, 'class_attribute': 0, 'class_const': 0, 'const': 0, 'inlinevar': 0, 'function': 0, 'method': 0, 'module': 0, '...
1def __str__(self) -> str:
2 return f"""{self.bad_names}
3 {sorted(self.by_module.items())}
4 {sorted(self.by_msg.items())}
5 {self.code_type_count}
6 {sorted(self.dependencies.items())}
7 {self.duplicated_lines}
8 {self.undocumented}
9 {self.convention}
10 {self.error}
11 {self.fatal}
12 {self.info}
13 {self.refactor}
14 {self.statement}
15 {self.warning}
16 {self.global_note}
17 {self.nb_duplicated_lines}
18 {self.percent_duplicated_lines}"""