Pattern: Missing use of simple boolean expression Issue: - Description Emitted when redundant pre-python 2.5 ternary syntax is used. Example of incorrect code: value = condition and False or other_value Example of correct code: value = other_value