unneeded-not / C0113#

Message emitted:

Consider changing "%s" to "%s"

Description:

Used when a boolean expression contains an unneeded negation.

Problematic code:

if not not input():  # [unneeded-not]
    pass

Correct code:

if input():
    pass

Created by the refactoring checker.