.. _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.* .. caution:: This message is disabled by default. To enable it, add ``suppressed-message`` to the ``enable`` option. .. caution:: By default, this message will not fail the execution (pylint will return 0). To make pylint fail for this message use the ``--fail-on=I0020`` option or ``--fail-on=I`` to fail on all enabled informational messages. **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 `__ checker.