klein
klein copied to clipboard
Don't use inlineCallbacks
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)withreturn xwithout switching to coros
Is that better?