Method: pylint.message.message_id_store.MessageIdStore.__repr__
Calls: 1, Exceptions: 0, Paths: 1Back
Path 1: 1 calls (1.0)
'MessageIdStore: [\n - W1234 (warning-symbol)\n - W1235 (warning-symbol-two)\n - C1234 (convention-symbol)\n - E1234 (error-symbol)\n]' (1)
1def __repr__(self) -> str:
2 result = "MessageIdStore: [\n"
3 for msgid, symbol in self.__msgid_to_symbol.items():
4 result += f" - {msgid} ({symbol})\n"
5 result += "]"
6 return result