Files
ruff/resources/test/fixtures/pyflakes/F704.py
2022-12-01 13:33:33 -05:00

12 lines
86 B
Python

def f() -> int:
yield 1
class Foo:
yield 2
yield 3
yield from 3
await f()