pylint-errors

C0114 (missing-module-docstring)

:x: Problematic code:

$ cat >> system.py <<EOF
import sys
EOF

:heavy_check_mark: Correct code:

$ cat >> system.py <<EOF
"""System module."""
import sys
EOF

Rationale:

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