.. _suppressed-message:

suppressed-message / I0020
==========================

**Message emitted:**

``Suppressed %s (from line %d)``

**Description:**

*A message was triggered on a line, but suppressed explicitly by a disable= comment in the file. This message is not generated for messages that are ignored due to configuration settings.*

**Problematic code:**

.. literalinclude:: /data/messages/s/suppressed-message/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/s/suppressed-message/good.py
   :language: python


**Additional details:**

``suppressed-message`` is simply a way to see messages that would be raised
without the disable in your codebase. It should not be activated most
of the time. See also ``useless-suppression`` if you want to see the message
that are disabled for no reasons.



Created by the `main <https://github.com/PyCQA/pylint/blob/main/pylint/lint/pylinter.py>`__ checker.