redundant-module-docstring
Module docstring only repeats the filename and, optionally, its immediate parent package.
Why
A one-line restatement of a module path duplicates information already visible to readers and search tools.
Fix
Remove the restatement after confirming module __doc__ is not an external documentation or runtime contract. Clarify author-controlled names or exports, and keep durable constraints.
Examples
"""Logging utilities."""
VALUE = 1"""Logging utilities redact credentials."""
VALUE = 1Formerly: module-docstring-restates-path