Python logoPython/
PYL-R1716

Chained comparison detectedPYL-R1716

Minor severityMinor
Anti-pattern categoryAnti-pattern

Detected boolean operation likea < b and b < c. It is recommended to refactor it to a < b < c. It improves readability,