MartinThoma / flake8-simplify

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

[Adjust Rule] SIM113: Take care of nested loops #39

Closed MartinThoma closed 2 years ago

MartinThoma commented 3 years ago

Desired change

Example

# Code which should NOT trigger SIM113
nb_points = 0
for line in lines:
    for point in line:
        nb_points += 1