unnecessary-spread (PIE800)#
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: