MartinThoma / flake8-simplify

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

SIM300: Check Yoda Conditions #16

Closed MartinThoma closed 3 years ago

MartinThoma commented 3 years ago

Explanation

It's way more common to have the variable first.

Example

# Bad
"Yoda" == i_am

# Good
i_am == "Yoda"