pylint-errors

R0123 (literal-comparison)

:x: Problematic code:

value = 25
if value is 25:
    pass

:heavy_check_mark: Correct code:

value = 25
if value == 25:
    pass

Rationale:

Used when comparing an object to a literal, which is usually what you do not want to do, since you can compare to a different literal than what was expected altogether.