Reports equality comparison with a boolean literal.

Example:


def func(s):
    if s.isdigit() == True:
        return int(s)

With the quick-fix applied, the code fragment will be simplified to:


def func(s):
    if s.isdigit():
        return int(s)