Method: pylint.utils.linterstats.LinterStats.increase_single_module_message_count
Calls: 4094, Exceptions: 0, Paths: 1Back
Path 1: 4094 calls (1.0)
'fail_under_minus10' (96) 'functional.a.arguments' (81) 'input.hide_code_with_imports' (81) '--test-file_data-name-9--' (60) 'string_formatting' (47) ...
'warning' (1413) 'error' (1011) 'refactor' (783) 'convention' (771) 'info' (104) 'fatal' (12)
1 (4094)
1def increase_single_module_message_count(
2 self, modname: str, type_name: MessageTypesFullName, increase: int
3 ) -> None:
4 """Increase the message type count of an individual message type of a
5 module.
6 """
7 self.by_module[modname][type_name] += increase