pylint-errors

R0124 (comparison-with-itself)

:x: Problematic code:

value = 5
if value == value:
    pass

:heavy_check_mark: Correct code:

value = 5
if value:
    pass

Rationale:

Used when something is compared against itself.