Pattern: Complex boolean condition Issue: - Description Emitted when a boolean condition is able to be simplified. Example of incorrect code: bool(CONSTANT or True) # [simplifiable-condition] Example of correct code: CONSTANT or True