twisted/klein

Don't use inlineCallbacks

wsanchez opened this issue · 2 comments

We have some use of inlineCallbacks in code that would be nicer with async/await syntax.

You can replace returnValue(x) with return x without switching to coros

You can replace returnValue(x) with return x without switching to coros

Is that better?