pylint-errors
W0127 (self-assigning-variable)
Problematic code:
foo
=
True
foo
=
foo
Correct code:
foo
=
True
Rationale:
Emitted when we detect that a variable is assigned to itself.
Related resources:
Issue Tracker