You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Eliot" logging helper @inline_callbacks is obsolete (see itamarst/eliot#485) and should be replaced with async def functions or Twisted's own @inlineCallbacks on sufficiently-new versions of Twisted.
Since python2 is pining for the fjords the preferred solution is to get rid of both kinds of decorators and use async def and await throughout the codebase.
The text was updated successfully, but these errors were encountered:
The "Eliot" logging helper
@inline_callbacks
is obsolete (see itamarst/eliot#485) and should be replaced withasync def
functions or Twisted's own@inlineCallbacks
on sufficiently-new versions of Twisted.Since python2 is pining for the fjords the preferred solution is to get rid of both kinds of decorators and use
async def
andawait
throughout the codebase.The text was updated successfully, but these errors were encountered: