Coverage for C:\Repos\ekr-pylint\pylint\message\__init__.py: 100%
6 statements
« prev ^ index » next coverage.py v6.4, created at 2022-05-24 10:21 -0500
« prev ^ index » next coverage.py v6.4, created at 2022-05-24 10:21 -0500
1# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
5"""All the classes related to Message handling."""
7from pylint.message.message import Message
8from pylint.message.message_definition import MessageDefinition
9from pylint.message.message_definition_store import MessageDefinitionStore
10from pylint.message.message_id_store import MessageIdStore
12__all__ = [
13 "Message",
14 "MessageDefinition",
15 "MessageDefinitionStore",
16 "MessageIdStore",
17]