Closed ergoithz closed 2 years ago
yield from
Yield-from is strictly forbidden under async generators, it looks like flake8-simplify does not check if generator is async before proposing that change.
async def items(): for c in 'abc': yield c
Desired change
yield from
on async generators.Explanation
Yield-from is strictly forbidden under async generators, it looks like flake8-simplify does not check if generator is async before proposing that change.
Example