pylint-errors

E0112 (too-many-star-expressions)

:x: Problematic code:

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

:heavy_check_mark: Correct code:

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

Rationale:

More than one starred expression in assignment. Emitted when there are more than one starred expressions (*x) in an assignment. This is a SyntaxError.