MartinThoma / flake8-simplify

❄ A flake8 plugin that helps you to simplify code
MIT License
185 stars 19 forks source link

SIM212, SIM220-SIM223: Ternary operator negation #6

Closed MartinThoma closed 3 years ago

MartinThoma commented 3 years ago

Explanation

Removing a negation makes things simpler to understand

Example

# Bad
b if not a else a

# Good
a if a else b