unnecessary-spread (PIE800)
Added in v0.0.231 · Related issues · View source
Derived from the flake8-pie linter.
Fix is sometimes available.
What it does
Checks for unnecessary dictionary unpacking operators (**).
Why is this bad?
Unpacking a dictionary into another dictionary is redundant. The unpacking operator can be removed, making the code more readable.
Example
Use instead: