Don't use inlineCallbacks
wsanchez opened this issue · 2 comments
wsanchez commented
We have some use of inlineCallbacks
in code that would be nicer with async
/await
syntax.
graingert commented
You can replace returnValue(x)
with return x
without switching to coros
wsanchez commented
You can replace
returnValue(x)
withreturn x
without switching to coros
Is that better?