Skip to content

Files

Latest commit

 

History

History
19 lines (12 loc) · 300 Bytes

simplifiable-condition.md

File metadata and controls

19 lines (12 loc) · 300 Bytes

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