pylint-errors

E0113 (invalid-star-assignment-target)

:x: Problematic code:

*foo = [1, 2, 3]

:heavy_check_mark: Correct code:

foo = [1, 2, 3]

Rationale:

Starred assignment target must be in a list or tuple. Emitted when a star expression is used as a starred assignment target.