pylint-errors

W0632 (unbalanced-tuple-unpacking)

:x: Problematic code:

t = (1, 2, 3, 4)
a, b, c = t

:heavy_check_mark: Correct code:

t = (1, 2, 3, 4)
a, b, *c = t

Rationale:

Used when there is an unbalanced tuple unpacking in assignment.