__init__.py 622 B

1234567891011121314151617
  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
  4. """All the classes related to Message handling."""
  5. from pylint.message.message import Message
  6. from pylint.message.message_definition import MessageDefinition
  7. from pylint.message.message_definition_store import MessageDefinitionStore
  8. from pylint.message.message_id_store import MessageIdStore
  9. __all__ = [
  10. "Message",
  11. "MessageDefinition",
  12. "MessageDefinitionStore",
  13. "MessageIdStore",
  14. ]