pylint-errors

E0114 (star-needs-assignment-target)

:x: Problematic code:

foo = *[1, 2, 3]

:heavy_check_mark: Correct code:

foo, *bar = [1, 2, 3]

Rationale:

Can use starred expression only in assignment target. Emitted when a star expression is not used in an assignment target.