comparison-with-itself / R0124#

Message emitted:

Redundant comparison - %s

Description:

Used when something is compared against itself.

Problematic code:

def is_an_orange(fruit):
    an_orange = "orange"
    return fruit == fruit  # [comparison-with-itself]

Correct code:

def is_an_orange(fruit):
    an_orange = "orange"
    return an_orange == fruit

Created by the basic checker.