.. _missing-module-docstring:

missing-module-docstring / C0114
================================

**Message emitted:**

Missing module docstring

**Description:**

*Used when a module has no docstring. Empty modules do not require a docstring.*

**Problematic code:**

.. literalinclude:: /data/messages/m/missing-module-docstring/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/m/missing-module-docstring/good.py
   :language: python



Created by the `basic <https://github.com/PyCQA/pylint/blob/main/pylint/checkers/base/docstring_checker.py>`__ checker.