Path 1: 4094 calls (1.0)

'warning' (1413) 'error' (1011) 'refactor' (783) 'convention' (771) 'info' (104) 'fatal' (12)

1 (4094)

1def increase_single_message_count(self, type_name: str, increase: int) -> None:
2        """Increase the message type count of an individual message type."""
3        setattr(self, type_name, getattr(self, type_name) + increase)