.. _empty-docstring: empty-docstring / C0112 ======================= **Message emitted:** Empty %s docstring **Description:** *Used when a module, function, class or method has an empty docstring (it would be too easy ;).* **Correct code:** .. code-block:: python def foo(): """A dummy description.""" **Problematic code:** .. code-block:: python def foo(): # [empty-docstring] """""" Created by ``basic`` checker