MartinThoma / flake8-simplify

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

[Adjust Rule] Expand SIM102 for elseif-if combinations #7

Closed MartinThoma closed 3 years ago

MartinThoma commented 3 years ago

Explanation

Less indentation is simpler

Example

# Bad
            elif get_app().window.actionFilesShowAudio.isChecked():
                if media_type != "audio":
                    return False

# Good
            elif get_app().window.actionFilesShowAudio.isChecked() and media_type != "audio":
                return False