pylint-errors

W0127 (self-assigning-variable)

:x: Problematic code:

foo = True
foo = foo

:heavy_check_mark: Correct code:

foo = True

Rationale:

Emitted when we detect that a variable is assigned to itself.