Skip to content

Files

Latest commit

 

History

History
19 lines (12 loc) · 321 Bytes

condition-evals-to-constant.md

File metadata and controls

19 lines (12 loc) · 321 Bytes

Pattern: Condition evals to constant

Issue: -

Description

Emitted when a boolean condition can be simplified to a constant value.

Example of incorrect code:

bool(CONSTANT or True)  # [condition-evals-to-constant]

Example of correct code:

CONSTANT or True