MartinThoma / flake8-simplify

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

SIM104: yield from #4

Closed MartinThoma closed 4 years ago

MartinThoma commented 4 years ago

Rule

Use yield from if possible

Example

# Bad
for item in iterable:
    yield item

# Good
yield from iterable