pylint-errors

C2001 (compare-to-zero)

:x: Problematic code:

if int(input()) == 0:
    pass

:heavy_check_mark: Correct code:

if bool(int(input())):
    pass

Rationale:

Used when Pylint detects comparison to a 0 constant.