Files
openide/python/testData/refactoring/extractmethod/AsyncDef.after.py

9 lines
115 B
Python

async def foo(x):
y = await bar(x)
return await y
async def bar(x_new):
y = await x_new
return y