Method: pylint.utils.linterstats.LinterStats.reset_message_count
Calls: 1158, Exceptions: 0, Paths: 1Back
Path 1: 1158 calls (1.0)
1def reset_message_count(self) -> None:
2 """Resets the message type count of the stats object."""
3 self.convention = 0
4 self.error = 0
5 self.fatal = 0
6 self.info = 0
7 self.refactor = 0
8 self.warning = 0