redeclared-assigned-name / W0128#

Message emitted:

Redeclared variable %r in assignment

Description:

Emitted when we detect that a variable was redeclared in the same assignment.

Correct code:

FIRST, SECOND = (1, 2)

Problematic code:

FIRST, FIRST = (1, 2)  # [redeclared-assigned-name]

Created by the basic checker.