pylint-errors

C0113 (unneeded-not)

:x: Problematic code:

if not not input():
    pass

:heavy_check_mark: Correct code:

if not input():
    pass

Rationale:

Used when a boolean expression contains an unneeded negation.