pylint-errors

C0112 (empty-docstring)

:x: Problematic code:

def foo():
    pass

:heavy_check_mark: Correct code:

def foo():
    """A dummy description."""

Rationale:

Used when a module, function, class or method has an empty docstring (it would be too easy ;).